:root {
            --primary: #FF6B35;
            --primary-dark: #E55A2B;
            --secondary: #9747FF;
            --accent: #FFE66D;
            --dark: #0D0D0D;
            --dark-light: #1A1A1A;
            --gray: #2A2A2A;
            --light: #FFFFFF;
            --text-gray: #B8B8B8;
            --smoke: rgba(255, 255, 255, 0.03);
            --gradient-1: linear-gradient(135deg, #FF6B35, #9747FF);
            --gradient-2: linear-gradient(135deg, #FFE66D, #FF6B35);
        }

        

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Smoke Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(255, 107, 53, 0.15), transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(151, 71, 255, 0.1), transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(255, 230, 109, 0.05), transparent 70%);
            animation: smokeMove 20s ease-in-out infinite;
            pointer-events: none;
            z-index: 1;
        }

        html, body {
  overflow-x: hidden; /* ensure fixed/transformed layers can’t create a horiz scrollbar */
}
img, svg, canvas, video {
  max-width: 100%;
  height: auto;
  display: block;
}

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            background: rgba(13, 13, 13, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 107, 53, 0.2);
        }

        .navbar.scrolled {
            background: rgba(13, 13, 13, 0.95);
            padding: 0.75rem 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 0.75rem;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* space between image and text */
  text-decoration: none;
}

.logo-img {
  height: 50px;   /* adjust as needed */
  width: auto;
  display: block;
}

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .logo-text {
            font-size: 1.75rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }

        .gradient-text {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-decoration: none;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 4px 24px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: rgba(255, 107, 53, 0.1);
            transform: translateY(-2px);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .smoke-animation {
            width: 400px;
            height: 400px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .smoke-icon {
            width: 500px;
            height: 500px;
            
            filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
            object-fit: contain;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(-5deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .smoke-particle {
            position: absolute;
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
            border-radius: 50%;
            animation: smokeRise 8s linear infinite;
        }

        .smoke-particle:nth-child(1) { animation-delay: 0s; left: 40%; }
        .smoke-particle:nth-child(2) { animation-delay: 2s; left: 50%; }
        .smoke-particle:nth-child(3) { animation-delay: 4s; left: 60%; }
        .smoke-particle:nth-child(4) { animation-delay: 6s; left: 45%; }

        @keyframes smokeRise {
            0% {
                transform: translateY(0) scale(0.8);
                opacity: 0;
            }
            20% {
                opacity: 0.4;
            }
            100% {
                transform: translateY(-300px) translateX(50px) scale(2);
                opacity: 0;
            }
        }

        /* Contract Box */
        .contract-box {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(151, 71, 255, 0.05));
            border-radius: 16px;
            padding: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            border: 1px solid rgba(255, 107, 53, 0.3);
            max-width: fit-content;
            position: relative;
        }

        .contract-label {
            position: absolute;
            top: -10px;
            left: 16px;
            background: var(--gradient-1);
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            color: white;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .contract-address {
            font-family: 'Courier New', monospace;
            font-size: 0.875rem;
            color: var(--primary);
            letter-spacing: -0.02em;
        }

       .copy-btn {
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 60px; /* enough to fit "Copy" comfortably */
            text-align: center;
            }

        .copy-btn:hover {
            background: rgba(255, 107, 53, 0.2);
            transform: scale(1.05);
        }

        /* Section Styles */
        .section {
            
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: linear-gradient(135deg, var(--gray), rgba(42, 42, 42, 0.5));
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 107, 53, 0.1);
            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-1);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 107, 53, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Tokenomics */
        .tokenomics-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .token-card {
            background: var(--gray);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 2px solid transparent;
            background: linear-gradient(var(--gray), var(--gray)) padding-box,
                        var(--gradient-1) border-box;
            transition: all 0.3s ease;
        }

        .token-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
        }

        .token-value {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .token-label {
            color: var(--text-gray);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Community Section */
        .community-content {
            text-align: center;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(151, 71, 255, 0.02));
            border-radius: 30px;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px) rotate(10deg);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }

       /* Footer */
.footer {
    background: var(--dark-light);
    padding: 3rem 0 0; /* Changed from 2rem to 0 */
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0; /* Add this to ensure no margin */
}

       .footer-content {
    text-align: center;
    padding: 0 1rem 2rem 1rem; /* Move the bottom padding here if you want some space inside */
    max-width: 100%;
    width: 100%;
    margin: 0;
}

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .copyright {
            color: var(--text-gray);
            font-size: 0.875rem;
            margin-top: 2rem;
        }

        /* Mobile Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .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(5px, -5px);
        }

        

        /* Responsive */
        @media (max-width: 1024px) {
            .hamburger {
                display: flex;
            }

            .smoke-icon {
                height: 300px;
                width: 300px;
            }

            .contract-address {
            font-family: 'Courier New', monospace;
            font-size: 0.7rem;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--dark-light);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                border-left: 1px solid rgba(255, 107, 53, 0.2);
            }

            .nav-links.active {
                right: 0;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-visual {
                order: -1;
                margin-bottom: 2rem;
            }

            .contract-box {
                margin: 0 auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-visual {
                margin-top: 100px;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 2.5rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .smoke-animation {
                width: 300px;
                height: 300px;
            }

            .smoke-emoji {
                font-size: 100px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .tokenomics-cards {
                grid-template-columns: 1fr;
            }
        }

        /* Fade-in Animation */
        [data-aos] {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        [data-aos].aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* About Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Meme Story Section */
.meme-story {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(151, 71, 255, 0.02));
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.meme-story h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.meme-story p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.meme-highlight {
    
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
    
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--gray), rgba(42, 42, 42, 0.5));
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    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-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Meme Stats */
.meme-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.meme-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.meme-stat-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.meme-stat-text {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Animation classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive for About Section */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .meme-story {
        padding: 2rem;
    }

    .meme-story h3 {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* DexScreener Chart Section Styles */
.chart-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.chart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.chart-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.chart-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.chart-container {
    background: linear-gradient(135deg, var(--gray), rgba(42, 42, 42, 0.8));
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.chart-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.chart-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: var(--text-gray);
    text-align: center;
    padding: 3rem;
}

.chart-placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

.chart-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.chart-placeholder p {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.chart-stat {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.chart-stat:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.chart-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.chart-stat-label {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.chart-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.chart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
    gap: 0.5rem;
}

.chart-btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.3);
}

.chart-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

.chart-btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.chart-btn-outline:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.chart-external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.chart-external-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.chart-info {
    background: rgba(151, 71, 255, 0.05);
    border: 1px solid rgba(151, 71, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.chart-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.chart-info strong {
    color: var(--secondary);
}

/* Live indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 768px) {
    .chart-header h2 {
        font-size: 2rem;
    }
    
    .chart-container {
        padding: 1.5rem;
    }
    
    .chart-wrapper {
        height: 500px;
    }
    
    .chart-placeholder {
        padding: 2rem;
    }
    
    .chart-placeholder-icon {
        font-size: 3rem;
    }
    
    .chart-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .chart-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .chart-wrapper {
        height: 400px;
    }
    
    .chart-placeholder h3 {
        font-size: 1.25rem;
    }
}

/* Simple Roadmap Section Styles */
.roadmap-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 4rem;
}

.roadmap-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.roadmap-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.roadmap-card {
    background: linear-gradient(135deg, var(--gray), rgba(42, 42, 42, 0.8));
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.roadmap-card:hover::before {
    transform: scaleX(1);
}

.roadmap-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.roadmap-phase {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.roadmap-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.roadmap-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.roadmap-items {
    list-style: none;
    padding: 0;
}

.roadmap-items li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.roadmap-items li:last-child {
    border-bottom: none;
}

.roadmap-items li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary);
    font-size: 0.75rem;
}

/* Status styling */
.phase-launch { border-color: rgba(34, 197, 94, 0.3); }
.phase-launch .roadmap-phase { color: #22c55e; }

.phase-growth { border-color: rgba(255, 193, 7, 0.3); }
.phase-growth .roadmap-phase { color: #ffc107; }

.phase-expansion { border-color: rgba(151, 71, 255, 0.3); }
.phase-expansion .roadmap-phase { color: var(--secondary); }

/* Responsive */
@media (max-width: 768px) {
    .roadmap-header h2 {
        font-size: 2rem;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .roadmap-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .roadmap-section {
        padding: 3rem 0;
    }
    
    .roadmap-card {
        padding: 1.5rem;
    }
    
    .roadmap-title {
        font-size: 1.25rem;
    }
}