/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4aa;
    --secondary-color: #1a1a2e;
    --accent-color: #f39c12;
    --dark-color: #0f0f23;
    --darker-color: #000000;
    --light-color: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #00d4aa;
    --text-muted: #8892b0;
    --border-color: #233554;
    --gradient-primary: linear-gradient(135deg, #00d4aa 0%, #f39c12 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    --gradient-accent: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 212, 170, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 212, 170, 0.2), 0 2px 4px -1px rgba(0, 212, 170, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 212, 170, 0.3), 0 4px 6px -2px rgba(0, 212, 170, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 212, 170, 0.4), 0 10px 10px -5px rgba(0, 212, 170, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 212, 170, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--darker-color);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Matrix-style background animation */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(0, 212, 170, 0.03) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0, 212, 170, 0.03) 100%);
    background-size: 50px 50px;
    animation: matrix-move 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes matrix-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 170, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from { filter: drop-shadow(0 0 5px rgba(0, 212, 170, 0.5)); }
    to { filter: drop-shadow(0 0 15px rgba(0, 212, 170, 0.8)); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(0, 212, 170, 0.3);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 
        0 0 15px rgba(0, 212, 170, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(0, 212, 170, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
    animation: aurora 8s ease-in-out infinite alternate;
}

@keyframes aurora {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(5deg) scale(1.1); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

/* Glitch effect for title */
.hero-title::before,
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-color);
}

.hero-title::before {
    animation: glitch-1 2s infinite;
    color: #ff0000;
    z-index: -1;
}

.hero-title::after {
    animation: glitch-2 2s infinite;
    color: #00ff00;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% { transform: translate(0); }
    15%, 49% { transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% { transform: translate(0); }
    21%, 62% { transform: translate(2px, -2px); }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fade-in-up 1s ease-out 0.5s both;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--darker-color);
    box-shadow: var(--shadow-glow);
    border: 2px solid transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.6);
    border-color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: inset 0 0 20px rgba(0, 212, 170, 0.1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--darker-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.6);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--darker-color);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.6);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 0 50px rgba(0, 212, 170, 0.3),
        0 0 100px rgba(0, 212, 170, 0.2),
        inset 0 0 50px rgba(0, 212, 170, 0.1);
    animation: float-glow 6s ease-in-out infinite;
    border: 2px solid rgba(0, 212, 170, 0.3);
}

@keyframes float-glow {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        box-shadow: 
            0 0 50px rgba(0, 212, 170, 0.3),
            0 0 100px rgba(0, 212, 170, 0.2);
    }
    50% { 
        transform: translateY(-20px) scale(1.02); 
        box-shadow: 
            0 0 70px rgba(0, 212, 170, 0.5),
            0 0 140px rgba(0, 212, 170, 0.3);
    }
}

/* Sections */
.features, .nft-gallery, .documents-content {
    padding: 5rem 0;
    background: var(--secondary-color);
    position: relative;
}

.features::before, .nft-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, var(--dark-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(0, 212, 170, 0.1),
        0 0 0 1px rgba(0, 212, 170, 0.1);
    text-align: left;
    transition: all 0.4s ease;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 212, 170, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 212, 170, 0.3),
        inset 0 1px 0 rgba(0, 212, 170, 0.2);
    border-color: var(--primary-color);
}

.feature-image {
    width: 100%;
    height: 120px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, var(--secondary-color), var(--dark-color));
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 170, 0.3);
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 170, 0.1), transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.feature-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
    z-index: 1;
    position: relative;
}

.feature-details {
    flex-grow: 1;
}

.feature-details p {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.feature-mechanisms {
    margin-top: 1rem;
}

.feature-mechanisms h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

.feature-mechanisms ul {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.feature-mechanisms li {
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

/* Gallery */
.gallery {
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Documents Page */
.documents-header {
    background: var(--gradient-primary);
    color: var(--darker-color);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.documents-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.documents-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.documents-grid {
    display: grid;
    gap: 3rem;
}

.document-card {
    background: linear-gradient(145deg, var(--dark-color), var(--secondary-color));
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(0, 212, 170, 0.1),
        0 0 0 1px rgba(0, 212, 170, 0.2);
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.document-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, var(--secondary-color), var(--light-color));
    border-bottom: 1px solid rgba(0, 212, 170, 0.3);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker-color);
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.document-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.document-subtitle {
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.document-content {
    padding: 2rem;
    color: var(--text-primary);
}

.document-content p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.document-content h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
    margin-bottom: 1rem;
}

.document-content h4 {
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.document-content ul li {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: var(--text-muted);
}

.document-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
}

.document-section:last-child {
    border-bottom: none;
}

.document-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.document-section ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.document-section li {
    margin-bottom: 0.5rem;
}

/* Enhanced Document Styling */
.token-details, .rewards-system, .governance-structure, .tech-specs, .vision-mission, .economic-breakdown {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-color);
}

.token-details h4, .rewards-system h4, .governance-structure h4, .tech-specs h4, .vision-mission h4, .economic-breakdown h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.token-details h4:first-child, .rewards-system h4:first-child, .governance-structure h4:first-child, .tech-specs h4:first-child, .vision-mission h4:first-child, .economic-breakdown h4:first-child {
    margin-top: 0;
}

.token-details ul, .rewards-system ul, .governance-structure ul, .tech-specs ul, .vision-mission ul, .economic-breakdown ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.token-details li, .rewards-system li, .governance-structure li, .tech-specs li, .vision-mission li, .economic-breakdown li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Roadmap */
.roadmap-timeline {
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.roadmap-date {
    flex-shrink: 0;
    width: 120px;
    font-weight: 600;
    color: var(--primary-color);
    padding-left: 3rem;
}

.roadmap-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.roadmap-content ul {
    margin-left: 1.5rem;
}

.roadmap-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: var(--darker-color);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    animation: cta-pulse 4s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--darker-color);
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.6);
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, var(--dark-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--darker-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 170, 0.1);
    color: var(--text-muted);
}

/* NFT Gallery Coming Soon Section */
.nft-gallery {
    background: var(--light-color);
    padding: 5rem 0;
}

.coming-soon-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coming-soon-card {
    background: linear-gradient(145deg, var(--dark-color), var(--secondary-color));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(0, 212, 170, 0.1),
        0 0 0 1px rgba(0, 212, 170, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 212, 170, 0.2);
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 0.6s;
}

.coming-soon-card:hover::before {
    left: 100%;
}

.coming-soon-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 170, 0.4),
        inset 0 1px 0 rgba(0, 212, 170, 0.2);
    border-color: var(--primary-color);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
}

.coming-soon-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.coming-soon-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: var(--shadow-md); }
    to { box-shadow: 0 0 20px rgba(245, 158, 11, 0.5), var(--shadow-md); }
}

/* Document Actions Section */
.document-actions {
    padding: 2rem;
    border-top: 1px solid rgba(0, 212, 170, 0.3);
    background: linear-gradient(145deg, var(--light-color), var(--secondary-color));
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }    .features-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .documents-title {
        font-size: 2.5rem;
    }

    .roadmap-item {
        flex-direction: column;
        gap: 1rem;
    }

    .roadmap-date {
        width: auto;
        padding-left: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
