/* CSS Reset and Variables */
:root {
    /* Base Network Theme Colors */
    --base-blue: #0052ff;
    --base-blue-light: #1a73ff;
    --base-blue-dark: #003db8;
    --primary-color: #0052ff;
    --secondary-color: #1a73ff;
    --accent-color: #00d4ff;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #0a0a0a;
    --light-color: #ffffff;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #68787d;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    
    /* Enhanced Gradients */
    --gradient-primary: linear-gradient(135deg, var(--base-blue) 0%, var(--base-blue-light) 50%, var(--accent-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    --gradient-rainbow: linear-gradient(45deg, #ff6b6b 0%, #4ecdc4 25%, #45b7d1 50%, #00d4ff 75%, #0052ff 100%);
    --gradient-mesh: radial-gradient(circle at 20% 80%, #0052ff20 0%, transparent 50%), 
                     radial-gradient(circle at 80% 20%, #00d4ff20 0%, transparent 50%),
                     radial-gradient(circle at 40% 40%, #1a73ff10 0%, transparent 50%);
    
    /* Advanced Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --blur-md: blur(12px);
    --blur-lg: blur(20px);
    
    --font-primary: 'JetBrains Mono', 'Fira Code', 'Source Code Pro', 'Monaco', 'Consolas', monospace;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Source Code Pro', 'Monaco', 'Consolas', monospace;
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 82, 255, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 82, 255, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 82, 255, 0.2);
    --shadow-xl: 0 25px 50px rgba(0, 82, 255, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-neon: 0 0 40px rgba(0, 212, 255, 0.6);
    
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    font-feature-settings: 'liga' 1, 'calt' 1;
    font-variant-ligatures: contextual;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    z-index: -1;
    animation: mesh-animation 15s ease-in-out infinite;
}

@keyframes mesh-animation {
    0%, 100% { 
        background: radial-gradient(circle at 20% 80%, #0052ff15 0%, transparent 50%), 
                    radial-gradient(circle at 80% 20%, #00d4ff15 0%, transparent 50%);
    }
    33% { 
        background: radial-gradient(circle at 70% 30%, #1a73ff15 0%, transparent 50%), 
                    radial-gradient(circle at 30% 70%, #00d4ff15 0%, transparent 50%);
    }
    66% { 
        background: radial-gradient(circle at 40% 90%, #0052ff15 0%, transparent 50%), 
                    radial-gradient(circle at 90% 10%, #00d4ff15 0%, transparent 50%);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 212, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient-rainbow);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
    animation: gradient-shift 3s ease-in-out infinite;
    display: inline-block;
    font-weight: 800;
    position: relative;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .gradient-text {
        background: none;
        color: var(--accent-color) !important;
        -webkit-text-fill-color: var(--accent-color);
    }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    min-height: 48px;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-color);
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: var(--blur-md);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: var(--glass-bg);
    color: var(--gray-700);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: var(--blur-md);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    min-height: 56px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
}

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

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

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 1.5rem 0 2rem;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, #0052ff20 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #00d4ff15 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, #1a73ff10 0%, transparent 70%);
    animation: hero-glow 8s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(0, 82, 255, 0.05) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 212, 255, 0.03) 50%, transparent 60%);
    animation: hero-lines 12s linear infinite;
}

@keyframes hero-lines {
    0% { transform: translate3d(-100%, -100%, 0); }
    100% { transform: translate3d(100%, 100%, 0); }
}

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

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

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.1;
    text-align: center;
}

.title-prefix {
    display: inline-block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 0.5rem;
    letter-spacing: 2px;
}

.title-main {
    display: inline-block;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    text-shadow: 
        0 0 40px rgba(0, 212, 255, 0.8),
        0 0 80px rgba(0, 82, 255, 0.6),
        0 0 120px rgba(0, 212, 255, 0.4);
    animation: ai-title-glow 3s ease-in-out infinite;
    position: relative;
}

@keyframes ai-title-glow {
    0%, 100% { 
        text-shadow: 
            0 0 40px rgba(0, 212, 255, 0.8),
            0 0 80px rgba(0, 82, 255, 0.6),
            0 0 120px rgba(0, 212, 255, 0.4);
        transform: scale(1);
    }
    50% { 
        text-shadow: 
            0 0 60px rgba(0, 212, 255, 1),
            0 0 120px rgba(0, 82, 255, 0.8),
            0 0 180px rgba(0, 212, 255, 0.6);
        transform: scale(1.05);
    }
}

.title-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    position: relative;
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    overflow: visible;
    z-index: 4;
    will-change: transform;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge.primary {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.2) 0%, rgba(0, 212, 255, 0.3) 100%);
    border-color: var(--accent-color);
    color: var(--light-color);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    animation: ai-pulse 3s ease-in-out infinite;
}

@keyframes ai-pulse {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.7), 0 0 60px rgba(0, 82, 255, 0.3);
        transform: scale(1.05);
    }
}

.hero-badge.secondary {
    background: var(--glass-bg);
    border-color: var(--glass-border);
    color: var(--accent-color);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        transform: scale3d(1, 1, 1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
        transform: scale3d(1.02, 1.02, 1);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        transform: scale3d(1, 1, 1);
    }
}

.badge-icon {
    font-size: 1.25rem;
    animation: rotate-pulse 4s ease-in-out infinite;
}

@keyframes rotate-pulse {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
    }
    25% { 
        transform: rotate(-5deg) scale(1.1);
    }
    50% { 
        transform: rotate(0deg) scale(1.2);
    }
    75% { 
        transform: rotate(5deg) scale(1.1);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
}

/* AI Meme Decorative Elements */
.hero-visual::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Floating AI Emojis */
.hero-visual::after {
    content: '🤖 🧠 ⚡ 💎 🚀 📈 🎯 💻';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    animation: float-emojis 20s linear infinite;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

@keyframes float-emojis {
    0% { transform: rotate(0deg) scale(1); opacity: 0.1; }
    25% { transform: rotate(90deg) scale(1.1); opacity: 0.2; }
    50% { transform: rotate(180deg) scale(0.9); opacity: 0.15; }
    75% { transform: rotate(270deg) scale(1.05); opacity: 0.25; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.1; }
}

/* Tech Orbs */
.tech-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.tech-orb-1 {
    width: 60px;
    height: 60px;
    top: -30px;
    right: -30px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    animation-delay: 0s;
}

.tech-orb-2 {
    width: 80px;
    height: 80px;
    bottom: -40px;
    left: -40px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.2) 0%, transparent 70%);
    animation-delay: 1s;
}

.tech-orb-3 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: -60px;
    background: radial-gradient(circle, rgba(26, 115, 255, 0.4) 0%, transparent 70%);
    animation-delay: 2s;
}

.tech-orb-4 {
    width: 50px;
    height: 50px;
    top: 20%;
    left: -50px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, transparent 70%);
    animation-delay: 3s;
}

/* Circuit Lines */
.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    animation: circuit-flow 6s linear infinite;
}

.circuit-line-1 {
    width: 200px;
    height: 2px;
    top: 30%;
    right: -100px;
    transform: rotate(45deg);
}

.circuit-line-2 {
    width: 150px;
    height: 2px;
    bottom: 40%;
    left: -75px;
    transform: rotate(-30deg);
    animation-delay: 2s;
}

.circuit-line-3 {
    width: 100px;
    height: 2px;
    top: 60%;
    right: -50px;
    transform: rotate(60deg);
    animation-delay: 4s;
}

@keyframes circuit-flow {
    0% { opacity: 0; transform: translateX(-20px) rotate(45deg); }
    50% { opacity: 0.6; }
    100% { opacity: 0; transform: translateX(20px) rotate(45deg); }
}

/* Data Nodes */
.data-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    pointer-events: none;
    z-index: 1;
    animation: node-pulse 3s ease-in-out infinite;
}

.data-node-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.data-node-2 {
    bottom: 25%;
    left: 15%;
    animation-delay: 1s;
}

.data-node-3 {
    top: 70%;
    right: 25%;
    animation-delay: 2s;
}

.data-node-4 {
    top: 45%;
    left: 5%;
    animation-delay: 1.5s;
}

@keyframes node-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.8); 
    }
    50% { 
        transform: scale(1.5); 
        box-shadow: 0 0 25px rgba(0, 212, 255, 1); 
    }
}

.floating-card {
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 1.1rem;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 212, 255, 0.1);
    border: 1px solid var(--gray-200);
    animation: float 6s ease-in-out infinite;
    max-width: 300px;
    width: 300px;
    color: rgb(20 255 236 / var(--tw-text-opacity, 1));
    pointer-events: auto;
    will-change: transform;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

@keyframes float {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    33% { transform: translate3d(0, -20px, 0) rotate(1deg); }
    66% { transform: translate3d(0, -10px, 0) rotate(-1deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-status {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-status.live {
    background: var(--success-color);
    color: var(--light-color);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-300);
    transition: all 0.2s ease;
}

.metric:hover {
    background: rgba(0, 82, 255, 0.05);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 8px;
    border-bottom: 1px solid var(--gray-300);
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
}

.metric-value {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1rem;
}

.metric-value.bullish {
    color: var(--success-color);
}

/* Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float-random 20s infinite linear;
    pointer-events: none;
    will-change: transform;
}

.floating-emoji:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-emoji:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-emoji:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-emoji:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 6s;
}

.floating-emoji:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation: particle-float 10s linear infinite;
}

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

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px var(--accent-color);
}

.interactive-pulse {
    position: relative;
}

.interactive-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.interactive-pulse:hover::after {
    width: 120%;
    height: 120%;
    opacity: 0;
}

.typing-cursor {
    display: inline-block;
    color: var(--accent-color);
    animation: cursor-blink 1s infinite;
    font-weight: 400;
    margin-left: 2px;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 82, 255, 0.1);
    z-index: 1001;
}

.scroll-progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--gray-100);
}

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

.about-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-card:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.about-card p {
    color: var(--gray-600);
}

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

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    background: var(--gradient-primary);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.feature-item h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    color: rgb(20 255 236/var(--tw-text-opacity,1))
}

.feature-item p {
    position: relative;
    z-index: 2;
    color: rgb(92 225 230/.8);
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.03) 0%, rgba(0, 212, 255, 0.06) 100%);
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.4;
    animation: mesh-animation 20s ease-in-out infinite reverse;
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.chart-container::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    animation: chart-glow 4s ease-in-out infinite;
}

@keyframes chart-glow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

.pie-chart {
    width: 300px;
    height: 300px;
    position: relative;
    z-index: 3;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-color) 0deg 144deg,
        var(--secondary-color) 144deg 234deg,
        var(--accent-color) 234deg 306deg,
        var(--success-color) 306deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.pie-chart::before {
    content: '';
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--light-color);
    position: absolute;
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.color-1 { background: var(--primary-color); }
.color-2 { background: var(--secondary-color); }
.color-3 { background: var(--accent-color); }
.color-4 { background: var(--success-color); }

/* Roadmap Section */
.roadmap-timeline {
    max-width: 800px;
    color:black;
    margin: 0 auto;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -50px;
    width: 2px;
    background: var(--gray-300);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    background: var(--success-color);
}

.timeline-item.active .timeline-marker {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

.timeline-content {
    flex: 1;
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.timeline-content ul {
    margin-left: 1rem;
}

.timeline-content li {
    margin-bottom: 0.5rem;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 82, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: community-glow 10s ease-in-out infinite;
}

@keyframes community-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    background: var(--glass-bg);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-neon);
    border-color: rgba(0, 212, 255, 0.6);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-icon {
    font-size: 1.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

@keyframes cta-shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation: cta-glow 3s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% { 
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.3);
    }
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, #0a0a0a 50%, var(--dark-color) 100%);
    color: var(--light-color);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 82, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    animation: footer-glow 12s ease-in-out infinite;
}

@keyframes footer-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-section {
    position: relative;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--light-color);
}

.footer-section h3 {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding: 0.25rem 0;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

/* Diamond Program Section Styles */
.diamond-program {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.diamond-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
    z-index: 1;
}

.diamond-program .container {
    position: relative;
    z-index: 2;
}

/* Program Overview */
.program-overview {
    margin-bottom: 4rem;
}

.overview-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.overview-card .card-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.requirements-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.requirements-list li:last-child {
    border-bottom: none;
}

/* Reward Tiers */
.reward-tiers {
    margin-bottom: 4rem;
}

.tiers-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--light-color);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 2px solid;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tier-gold {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--glass-bg) 100%);
}

.tier-silver {
    border-color: #c0c0c0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, var(--glass-bg) 100%);
}

.tier-bronze {
    border-color: #cd7f32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, var(--glass-bg) 100%);
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tier-medal {
    font-size: 3rem;
}

.tier-info h4 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--light-color);
}

.tier-range {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tier-allocation, .tier-reward, .tier-requirement {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.allocation-label, .reward-label, .requirement-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.allocation-value, .reward-value, .requirement-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-color);
}

.allocation-percent {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Anti-Gaming Measures */
.anti-gaming {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--border-radius);
}

.anti-gaming h3 {
    color: #ef4444;
    text-align: center;
    margin-bottom: 1rem;
}

.anti-gaming-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.gaming-rules {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid #ef4444;
}

.rule-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rule-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Additional Benefits */
.additional-benefits {
    margin-bottom: 4rem;
}

.additional-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: rgb(20 255 236/var(--tw-text-opacity,1));
}

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

.benefit-item {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--success-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Tracking Dashboard */
.tracking-dashboard {
    margin-bottom: 4rem;
}

.tracking-dashboard h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: rgb(20 255 236/var(--tw-text-opacity,1));
}

.dashboard-preview {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.dashboard-header h4 {
    text-align: center;
    color: var(--light-color);
    margin-bottom: 2rem;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.dashboard-features .feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-name {
    font-weight: 600;
    color: var(--light-color);
}

.feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.real-time-updates {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.real-time-updates h4 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.updates-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.update-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    contain: layout;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background-color;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 255, 218, 0.3);
    transform: translate3d(0, -2px, 0);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    color: white;
    font-size: 1rem;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 60px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.faq-question:hover,
.faq-question:focus {
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.faq-question:focus {
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.5);
    border-radius: 15px;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.faq-icon {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chevron-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.expanded .chevron-icon {
    transform: rotate3d(1, 0, 0, 180deg);
}

.faq-item.expanded .faq-toggle {
    background: rgba(100, 255, 218, 0.2);
    transform: scale3d(1.1, 1.1, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    will-change: transform, opacity, max-height;
}

.faq-item.expanded .faq-answer {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 1.5rem 1.5rem;
}

.answer-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.question-text {
    font-weight: 600;
}

.answer-text {
    line-height: 1.6;
}

/* Diamond CTA */
.diamond-cta {
    text-align: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.diamond-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgb(20 255 236/var(--tw-text-opacity,1));
}

.diamond-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Performance optimized animations - removed redundant transforms and complex keyframes */

/* Reduced animation complexity */
.animate-on-scroll {
    will-change: transform, opacity;
}

/* Responsive Design for Diamond Program */
@media (max-width: 768px) {
    .floating-emoji {
        display: none; /* Hide on mobile for better performance */
    }
    
    .hero-bg-animation {
        display: none;
    }
    
    .floating-card {
        animation: none; /* Disable animations on mobile */
    }
    
    /* Ensure sections are visible on mobile - override JS opacity */
    section {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .diamond-program {
        padding: 3rem 0;
        opacity: 1 !important;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tier-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-features {
        grid-template-columns: 1fr;
    }
    
    .updates-list {
        grid-template-columns: 1fr;
    }
    
    .diamond-cta {
        padding: 2rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .requirements-list {
        padding: 0 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pie-chart {
        width: 250px;
        height: 250px;
    }
}

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

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

    .nav-toggle {
        display: flex;
    }

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .pie-chart {
        width: 200px;
        height: 200px;
    }
}

/* Loading and Animation States */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Utility animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
