* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-green: #00ff88;
    --accent-cyan: #00ffff;
    --accent-pink: #ff1b8d;
    --accent-purple: #8b5cf6;
    --neon-green: #39ff14;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --card-bg: rgba(17, 17, 17, 0.95);
    --border-glow: rgba(0, 255, 136, 0.4);
    --shadow-green: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Enhanced Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 27, 141, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-green);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

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

.glow-border {
    border: 1px solid var(--border-glow);
    box-shadow: var(--shadow-green);
}

.anime-card {
    background: var(--card-bg);
    border: 2px solid transparent;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.anime-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--accent-green), var(--accent-cyan), var(--accent-pink));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neon-text {
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor,
        0 0 20px var(--accent-green);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-glow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--accent-green);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    min-height: 50px;
}

/* Fallback text styling */
.logo-fallback {
    display: none;
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-green);
    text-shadow: 
        0 0 10px var(--accent-green),
        0 0 20px var(--accent-green),
        0 0 30px var(--accent-green);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-text 2s ease-in-out infinite;
}

/* Show fallback when image fails */
.logo.fallback-active .logo-fallback {
    display: block;
}

/* Pulse animation for fallback text */
@keyframes pulse-text {
    0%, 100% { 
        text-shadow: 
            0 0 10px var(--accent-green),
            0 0 20px var(--accent-green),
            0 0 30px var(--accent-green);
    }
    50% { 
        text-shadow: 
            0 0 15px var(--accent-green),
            0 0 30px var(--accent-green),
            0 0 45px var(--accent-green);
    }
}

.logo img {
    height: 110px;
    width: 160px;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--accent-green)) 
            drop-shadow(0 0 15px rgba(0, 255, 136, 0.4));
    transition: all 0.3s ease;
    margin-top: -15px;
    margin-bottom: -15px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

/* Enhanced Navigation Links */
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--accent-green);
    text-shadow: 0 0 15px var(--accent-green);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-green);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--accent-green);
    text-shadow: 
        0 0 10px var(--accent-green),
        0 0 20px var(--accent-green),
        0 0 40px var(--accent-green);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.chinese-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--accent-cyan);
    margin-bottom: 40px;
    text-shadow: 0 0 15px var(--accent-cyan);
}

/* Hero Spacing */
.hero-spacing {
    height: 60px;
}

/* Enhanced Button Micro-interactions */
.mint-button, .cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    color: #000;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.mint-button:hover, .cta-button:hover {
    transform: translateY(-8px) scale(1.05) translateZ(0);
    box-shadow: 
        0 25px 50px rgba(0, 255, 136, 0.4),
        0 0 80px rgba(0, 255, 136, 0.8),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.mint-button:active, .cta-button:active {
    transform: translateY(-5px) scale(1.02) translateZ(0);
    transition: all 0.1s ease;
}

.cta-button {
    padding: 25px 60px;
    font-size: 22px;
    margin-top: 40px;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.08) translateZ(0);
    box-shadow: 
        0 25px 50px rgba(0, 255, 136, 0.4),
        0 0 80px rgba(0, 255, 136, 0.8);
}

.cta-button:active {
    transform: translateY(-5px) scale(1.02) translateZ(0);
    transition: all 0.1s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.mint-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.mint-button:hover::before {
    left: 100%;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.6;
}

/* NFT Showcase */
.nft-showcase {
    padding: 120px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 80px;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px var(--accent-green);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(17, 17, 17, 0.3);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-glow);
    box-shadow: var(--shadow-green);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.carousel-page {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px;
}

.nft-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 25px;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: visible;
    backdrop-filter: blur(20px);
    width: 280px;
    height: 400px;
}

.nft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan), var(--accent-pink));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nft-card:hover::before {
    opacity: 1;
}

.nft-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 255, 136, 0.4),
        0 0 60px rgba(0, 255, 136, 0.3);
    z-index: 10;
}

/* Enhanced Image Loading States */
.nft-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.image-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.image-loader::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.nft-image img.loaded {
    opacity: 1;
}

.nft-image img.loaded + .image-loader {
    opacity: 0;
    pointer-events: none;
}

.nft-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.nft-trait {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-purple));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 20;
    box-shadow: 
        0 5px 15px rgba(255, 27, 141, 0.4),
        0 0 20px rgba(255, 27, 141, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Arrow Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    color: var(--accent-green);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.3),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 
        0 0 50px rgba(0, 255, 136, 0.8),
        0 0 100px rgba(0, 255, 136, 0.4),
        inset 0 0 50px rgba(0, 255, 136, 0.2);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: -80px;
}

.next-btn {
    right: -80px;
}

/* Arrow Glow Effect */
.arrow-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-green), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.carousel-nav:hover .arrow-glow {
    width: 150px;
    height: 150px;
    opacity: 0.3;
}

/* Arrow Trail Effect */
.arrow-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.prev-btn:hover .arrow-trail {
    width: 30px;
    left: 20%;
}

.next-btn:hover .arrow-trail {
    width: 30px;
    left: 80%;
}

.arrow-icon {
    position: relative;
    z-index: 10;
    font-weight: bold;
    text-shadow: 0 0 10px currentColor;
}

/* Page Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--accent-green);
    box-shadow: 
        0 0 15px var(--accent-green),
        0 0 30px var(--accent-green);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.3);
}

.indicator:hover:not(.active) {
    background: rgba(0, 255, 136, 0.6);
    transform: scale(1.1);
}

.nft-title {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.nft-rarity {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Utility Section - Enhanced */
.utility {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(139, 92, 246, 0.05));
    position: relative;
}

.utility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

/* Enhanced Utility Card Interactions */
.utility-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.utility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan), var(--accent-pink));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.utility-card:hover::before {
    opacity: 1;
}

.utility-card:hover {
    transform: translateY(-15px) scale(1.02) translateZ(0);
    box-shadow: 
        0 25px 50px rgba(0, 255, 136, 0.2),
        0 0 60px rgba(0, 255, 136, 0.1);
}

.utility-card:hover .utility-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.utility-card:hover .utility-title {
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--accent-green);
}

.utility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.utility-title {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.utility-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* Protocol Progress */
.protocol-progress {
    padding: 100px 0;
    text-align: center;
}

.progress-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-glow);
}

.progress-title {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.progress-bar {
    width: 100%;
    height: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid var(--border-glow);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
    width: 10%;
    transition: width 3s ease;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 20px var(--accent-green);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Roadmap */
.roadmap-section {
    padding: 120px 0;
    background: var(--secondary-bg);
    position: relative;
}

.roadmap-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-timeline {
    position: relative;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-green), var(--accent-cyan), var(--accent-pink));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent-green);
}

.roadmap-item {
    position: relative;
    margin: 100px 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.roadmap-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-item:nth-child(even) .roadmap-content {
    margin-left: auto;
}

.roadmap-content {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 35px;
    width: 45%;
    position: relative;
    border: 2px solid transparent;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan), var(--accent-pink));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.roadmap-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 4px solid var(--primary-bg);
    box-shadow: 0 0 20px var(--accent-green);
    z-index: 10;
}

.roadmap-quarter {
    font-family: 'Orbitron', monospace;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.roadmap-title {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.roadmap-status {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-upcoming {
    background: linear-gradient(45deg, #ff6b35, #ff8e3c);
    color: white;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.status-development {
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-green));
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.status-planned {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    color: white;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.status-tbd {
    background: linear-gradient(45deg, #666, #888);
    color: white;
    box-shadow: 0 0 15px rgba(136, 136, 136, 0.5);
}

/* Join CTA */
.join-cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(139, 92, 246, 0.1));
    position: relative;
}

/* Follow us on X Section */
.follow-x-section {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(17, 17, 17, 0.9));
    border-top: 1px solid var(--border-glow);
    position: relative;
}

.follow-x-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,255,136,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.follow-x-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.follow-x-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--accent-green);
}

.follow-x-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.follow-x-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid #1d9bf0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 0 20px rgba(29, 155, 240, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.follow-x-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #1d9bf0, #0f7bc4);
    border-color: #00ff88;
    box-shadow: 
        0 15px 40px rgba(29, 155, 240, 0.4),
        0 0 50px rgba(0, 255, 136, 0.3);
    color: #ffffff;
}

.x-icon {
    font-size: 24px;
    font-weight: bold;
    color: #1d9bf0;
    transition: all 0.3s ease;
}

.follow-x-btn:hover .x-icon {
    color: #ffffff;
    text-shadow: 0 0 10px #ffffff;
}

.follow-arrow {
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    color: var(--accent-green);
}

.follow-x-btn:hover .follow-arrow {
    transform: translateX(5px);
    color: #ffffff;
}

.follow-x-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.follow-x-btn:hover::before {
    left: 100%;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-bg);
    border: 2px solid var(--accent-green);
    border-radius: 25px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    backdrop-filter: blur(20px);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-green);
}

/* Mobile Responsive */
/* ===== MOBILE NAVIGATION FIX - REPLACE THE MOBILE SECTION IN style.css ===== */

/* Hamburger Menu for Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--accent-green);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Responsive - UPDATED */
@media (max-width: 768px) {
    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Navigation adjustments */
    .nav-content {
        position: relative;
    }
    
    /* Hide desktop nav links initially */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        padding: 0;
        margin: 0;
        list-style: none;
        border-left: 3px solid var(--accent-green);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    /* Show nav menu when active */
    .nav-links.mobile-active {
        right: 0;
    }
    
    /* Mobile nav link styling */
    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-links.mobile-active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Stagger animation for nav items */
    .nav-links.mobile-active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.mobile-active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.mobile-active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.mobile-active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.mobile-active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.mobile-active li:nth-child(6) { transition-delay: 0.6s; }
    
    /* Mobile nav links */
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-primary);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 15px 30px;
        border-radius: 25px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        display: block;
        text-align: center;
        min-width: 200px;
    }
    
    .nav-links a:hover {
        color: var(--accent-green);
        background: rgba(0, 255, 136, 0.1);
        border-color: var(--accent-green);
        transform: scale(1.05);
        text-shadow: 0 0 20px var(--accent-green);
        box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    }
    
    /* Logo adjustments for mobile */
    .logo img {
        height: 80px;
        width: 120px;
    }
    
    /* Navigation bar height adjustment */
    nav {
        padding: 15px 0;
    }
    
    /* Close button overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero section adjustment for mobile nav */
    .hero {
        padding-top: 100px;
    }
    
    /* Other mobile sections stay the same... */
    .hero-title {
        font-size: 2.5rem;
    }

    .chinese-subtitle {
        font-size: 1.5rem;
    }

    .hero-spacing {
        height: 40px;
    }

    .carousel-page {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        height: auto;
    }

    .carousel-wrapper {
        height: auto;
        min-height: 600px;
    }

    .nft-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 350px;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .prev-btn {
        left: -50px;
    }

    .next-btn {
        right: -50px;
    }

    .utility-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .utility-card {
        margin: 0 10px;
    }

    .roadmap-line {
        left: 30px;
    }

    .roadmap-item {
        padding-left: 70px;
    }

    .roadmap-content {
        width: 100%;
        margin-left: 0 !important;
    }

    .roadmap-dot {
        left: 30px;
    }

    .ai-chatbot {
        width: 180px;
        height: 60px;
        left: 20px;
        bottom: 20px;
    }

    .ai-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }

    .container {
        padding: 0 15px;
    }
}








































































