 @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-cyan: #00d4ff;
            --primary-purple: #a855f7;
            --primary-pink: #ff00ff;
            --dark-bg: #050510;
            --dark-card: #0a0a1b;
            --darker-card: #080815;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --border-glow: rgba(0, 212, 255, 0.2);
            --gradient-primary: linear-gradient(135deg, #00d4ff, #a855f7, #ff00ff);
            --gradient-dark: linear-gradient(180deg, #0a0a1b 0%, #050510 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            position: relative;
        }

        /* Premium Animated Background */
        .background-container {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
        }

        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.3;
            animation: float 20s infinite ease-in-out;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: var(--primary-cyan);
            top: -200px;
            left: -200px;
            animation-duration: 25s;
        }

        .orb-2 {
            width: 800px;
            height: 800px;
            background: var(--primary-purple);
            bottom: -300px;
            right: -300px;
            animation-duration: 30s;
            animation-delay: 5s;
        }

        .orb-3 {
            width: 500px;
            height: 500px;
            background: var(--primary-pink);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 35s;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(50px, -50px) scale(1.1); }
            50% { transform: translate(-50px, 50px) scale(0.9); }
            75% { transform: translate(-30px, -30px) scale(1.05); }
        }

        /* Grid Pattern Overlay */
        .grid-overlay {
            position: fixed;
            inset: 0;
            background-image: 
                linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            pointer-events: none;
        }

        /* Premium Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(5, 5, 16, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(0, 212, 255, 0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(5, 5, 16, 0.95);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Logo Icon Styles */
.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}


/* Option 2: Image Style */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}



/* Logo Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    }
}

/* Footer Logo Styles */
.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile responsiveness for footer logo */
@media (max-width: 640px) {
    .footer-logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
}

.logo-container:hover .logo::after {
    opacity: 1;
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        filter: blur(4px);
    }
    50% {
        opacity: 1;
        filter: blur(8px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-symbol {
        font-size: 1.4rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}

        /* Desktop Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link:hover {
            color: var(--text-primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.7rem 1.8rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 48px;
            height: 48px;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--gradient-primary);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: linear-gradient(180deg, #0a0a1b 0%, #050510 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.5s ease;
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
            padding: 0;
        }

        .mobile-menu .nav-link {
            font-size: 1.5rem;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .mobile-menu .nav-link:hover {
            color: var(--primary-cyan);
        }

        .mobile-menu .nav-cta {
            margin-top: 2rem;
            font-size: 1.1rem;
            padding: 1rem 3rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .mobile-menu .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding: 8rem 2rem 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-container {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            animation: fadeInLeft 1s ease;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            margin-bottom: 2rem;
            font-size: 0.85rem;
            color: var(--primary-cyan);
            font-weight: 600;
        }

        .hero-badge .pulse {
            width: 8px;
            height: 8px;
            background: var(--primary-cyan);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
        }

        .hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 0.95;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }

        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .hero-tagline {
            font-size: 1.4rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-style: italic;
            opacity: 0.9;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 3rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 1rem 2.5rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
        }

        .btn-secondary {
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--text-primary);
            text-decoration: none;
            border: 2px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: var(--primary-cyan);
            transform: translateY(-2px);
        }

        /* Token Card */
        .token-card {
            background: linear-gradient(135deg, rgba(10, 10, 27, 0.9), rgba(8, 8, 21, 0.9));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            animation: fadeInRight 1s ease;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .token-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 24px;
            opacity: 0;
            z-index: -1;
            filter: blur(20px);
            animation: glow 3s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { 
                opacity: 0.2;
                transform: scale(0.98);
            }
            50% { 
                opacity: 0.4;
                transform: scale(1.02);
            }
        }

        .token-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .token-title {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .token-badge {
            padding: 0.4rem 1rem;
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 20px;
            color: #00ff88;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .contract-section {
            margin-bottom: 2rem;
        }

        .contract-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        .contract-container {
            position: relative;
        }

        .contract-input {
            width: 100%;
            padding: 1.2rem;
            background: rgba(5, 5, 16, 0.8);
            border: 2px solid rgba(0, 212, 255, 0.1);
            border-radius: 16px;
            color: var(--primary-cyan);
            font-family: 'Space Grotesk', monospace;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contract-input:hover {
            border-color: rgba(0, 212, 255, 0.3);
            background: rgba(0, 212, 255, 0.05);
        }

        .copy-btn {
            width: 100%;
            margin-top: 1rem;
            padding: 1rem;
            background: var(--gradient-primary);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .copy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
        }

        .buy-btn {
            width: 100%;
            margin-top: 0.5rem;
            padding: 1rem;
            background: linear-gradient(135deg, #00ff88, var(--primary-cyan));
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .buy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
        }

        /* Token Stats */
        .token-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .stat-box {
            background: rgba(5, 5, 16, 0.6);
            padding: 1.2rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 212, 255, 0.1);
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 0.3rem;
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, transparent, rgba(10, 10, 27, 0.5), transparent);
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(168, 85, 247, 0.1);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 50px;
            color: var(--primary-purple);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(10, 10, 27, 0.6), rgba(8, 8, 21, 0.6));
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .feature-card:hover::before {
            transform: translateX(0);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
            color: white;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta {
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(168, 85, 247, 0.1), transparent 70%);
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .cta h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
        }

        /* Footer */
        footer {
            padding: 3rem 2rem;
            background: rgba(5, 5, 16, 0.5);
            border-top: 1px solid rgba(0, 212, 255, 0.1);
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .social-link {
            width: 48px;
            height: 48px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-cyan);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: rgba(0, 212, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
        }

        .social-link i {
            transition: all 0.3s ease;
        }

        .social-link:hover i {
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .token-stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .hero {
                padding: 6rem 1.5rem 3rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-tagline {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .cta h2 {
                font-size: 2rem;
            }
        }

      /* Roadmap Section */
.roadmap {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 27, 0.3), transparent);
}

.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.roadmap-card {
    background: linear-gradient(135deg, rgba(10, 10, 27, 0.8), rgba(8, 8, 21, 0.8));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.roadmap-card:hover::before {
    transform: scaleX(1);
}

.roadmap-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.roadmap-card.completed {
    border-color: rgba(0, 255, 136, 0.3);
}

.roadmap-card.completed::before {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    transform: scaleX(1);
}

.roadmap-card.active {
    border-color: rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(8, 8, 21, 0.8));
}

.roadmap-card.active::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.roadmap-quarter {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50px;
    color: var(--primary-purple);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.roadmap-card.completed .roadmap-quarter {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
    color: #00ff88;
}

.roadmap-card.active .roadmap-quarter {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    color: var(--primary-cyan);
}

.roadmap-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.roadmap-list {
    list-style: none;
    padding: 0;
}

.roadmap-list li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.4;
}

.roadmap-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
}

.roadmap-card.completed .roadmap-list li::before {
    content: '✓';
    color: #00ff88;
}

/* Tablet Responsive */
@media (max-width: 968px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}

.chart-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 27, 0.5), transparent);
    position: relative;
}

.chart-container {
    max-width: 1400px;
    margin: 0 auto;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, rgba(10, 10, 27, 0.9), rgba(8, 8, 21, 0.9));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

#dexscreener-embed {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

/* Loading State */
.chart-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 212, 255, 0.1);
    border-top: 3px solid var(--primary-cyan);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Chart Stats Bar */
.chart-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.chart-stat-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 27, 0.8), rgba(8, 8, 21, 0.8));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.stat-item i {
    color: var(--primary-cyan);
    font-size: 1.1rem;
}

.chart-stat-link:hover .stat-item {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.chart-stat-link:hover .stat-item {
    color: var(--text-primary);
}

/* Tablet Responsive */
@media (max-width: 968px) {
    .chart-wrapper {
        height: 500px;
    }
    
    .chart-stats {
        gap: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .chart-section {
        padding: 4rem 1.5rem;
    }
    
    .chart-wrapper {
        height: 400px;
        margin: 2rem 0;
        border-radius: 16px;
    }
    
    #dexscreener-embed {
        border-radius: 16px;
    }
    
    .chart-stats {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stat-item {
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
}

/* Hide loading spinner once iframe loads */
#dexscreener-embed:not([src=""]) ~ .chart-loading {
    display: none;
}