/* ==========================================
   BOOZE & BITCOIN - Cyberpunk Game Styles
   ========================================== */

/* CSS Custom Properties - Neon Cyberpunk Theme */
:root {
    /* Core Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.8);
    
    /* Neon Palette */
    --neon-pink: #ff2a6d;
    --neon-pink-glow: rgba(255, 42, 109, 0.6);
    --neon-blue: #05d9e8;
    --neon-blue-glow: rgba(5, 217, 232, 0.6);
    --neon-green: #00ff9f;
    --neon-green-glow: rgba(0, 255, 159, 0.6);
    --neon-yellow: #f9f002;
    --neon-purple: #d300c5;
    --neon-orange: #ff6b35;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Animation */
    --transition-fast: 0.15s ease;
    --transition-med: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-mono);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* Selection */
::selection {
    background: var(--neon-pink);
    color: var(--bg-dark);
}

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

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-blue));
    border-radius: 4px;
}

/* ==========================================
   CRT & Scanline Effects
   ========================================== */

.crt-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    animation: crt-flicker 0.15s infinite;
}

@keyframes crt-flicker {
    0% { opacity: 0.97; }
    50% { opacity: 1; }
    100% { opacity: 0.98; }
}

.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
}

/* ==========================================
   Particle Background Canvas
   ========================================== */

#particle-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 42, 109, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(5, 217, 232, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 255, 159, 0.05) 0%, transparent 70%),
        var(--bg-dark);
}

/* ==========================================
   Navigation
   ========================================== */

.cyber-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 42, 109, 0.3);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink-glow);
    flex: 1;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-md);
}

.wallet-connect {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
    padding: var(--space-xs) 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    transition: var(--transition-med);
}

.nav-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

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

/* Cyber Button */
.cyber-btn {
    position: relative;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-fast);
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
}

.cyber-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon-pink);
    transform: translateX(-100%);
    transition: var(--transition-fast);
    z-index: -1;
}

.cyber-btn:hover {
    color: var(--bg-dark);
    text-shadow: none;
    box-shadow: 
        0 0 20px var(--neon-pink-glow),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.cyber-btn:hover::before {
    transform: translateX(0);
}

.cyber-btn:active {
    transform: scale(0.98);
}

/* ==========================================
   Glitch Effect
   ========================================== */

.glitch {
    position: relative;
    animation: glitch-skew 4s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--neon-blue);
    animation: glitch-effect 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-2px, -2px);
}

.glitch::after {
    color: var(--neon-pink);
    animation: glitch-effect 2s infinite linear alternate-reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translate(2px, 2px);
}

@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    20% { transform: skew(0deg); }
    21% { transform: skew(1deg); }
    22% { transform: skew(0deg); }
    80% { transform: skew(0deg); }
    81% { transform: skew(-1deg); }
    82% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-xl) var(--space-md);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        conic-gradient(from 180deg at 50% 50%, 
            transparent 0deg, 
            rgba(255, 42, 109, 0.05) 60deg,
            transparent 120deg,
            rgba(5, 217, 232, 0.05) 180deg,
            transparent 240deg,
            rgba(0, 255, 159, 0.05) 300deg,
            transparent 360deg
        );
    animation: rotate-bg 30s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

/* Title */
.title-container {
    margin-bottom: var(--space-md);
}

.main-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
}

.title-line {
    display: flex;
    gap: 0.05em;
}

.letter {
    display: inline-block;
    animation: letter-float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--neon-pink-glow));
}

.title-line.bitcoin .letter {
    background: linear-gradient(180deg, var(--neon-yellow), var(--neon-orange));
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(249, 240, 2, 0.6));
}

@keyframes letter-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ampersand {
    font-size: 0.5em;
    color: var(--neon-blue);
    text-shadow: 0 0 30px var(--neon-blue-glow);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        text-shadow: 0 0 30px var(--neon-blue-glow);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 60px var(--neon-blue-glow), 0 0 100px var(--neon-blue-glow);
        transform: scale(1.1);
    }
}

/* Tagline with typing effect */
.tagline {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-top: var(--space-sm);
    min-height: 1.5em;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Hero Frog */
.hero-frog {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frog-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--neon-green-glow) 0%, transparent 70%);
    animation: frog-pulse 2s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes frog-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.frog-img {
    width: 250px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--neon-green-glow));
    animation: frog-bounce 2s ease-in-out infinite;
}

@keyframes frog-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-2deg); }
    75% { transform: translateY(-15px) rotate(2deg); }
}

.frog-shadow {
    position: absolute;
    bottom: 10px;
    width: 150px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
    animation: shadow-pulse 2s ease-in-out infinite;
}

@keyframes shadow-pulse {
    0%, 100% { transform: scaleX(1); opacity: 0.5; }
    50% { transform: scaleX(0.8); opacity: 0.3; }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(5, 217, 232, 0.3);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    position: relative;
    clip-path: polygon(
        10px 0, 
        100% 0, 
        100% calc(100% - 10px), 
        calc(100% - 10px) 100%, 
        0 100%, 
        0 10px
    );
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.stat-note {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Play Button */
.play-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    text-decoration: none;
    margin-top: var(--space-md);
}

.play-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green-glow);
    z-index: 10;
    letter-spacing: 0.2em;
}

.play-rings {
    position: absolute;
    inset: 0;
}

.ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    animation: ring-pulse 2s ease-out infinite;
}

.ring:nth-child(2) {
    animation-delay: 0.4s;
}

.ring:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes ring-pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.play-btn:hover .play-text {
    animation: text-glitch 0.3s infinite;
}

@keyframes text-glitch {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(-2px, 2px); }
    50% { transform: translate(2px, -2px); }
    75% { transform: translate(-2px, -2px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 1.5s ease-in-out infinite;
}

@keyframes wheel-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

/* ==========================================
   Game Section
   ========================================== */

.game-section {
    min-height: 100vh;
    padding: var(--space-xl) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.section-header {
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

/* Game Container */
.game-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 4/3;
    background: var(--bg-darker);
    border: 3px solid var(--neon-pink);
    box-shadow: 
        0 0 30px var(--neon-pink-glow),
        inset 0 0 50px rgba(255, 42, 109, 0.1);
    overflow: hidden;
}

.game-ui {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
}

.game-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    font-family: var(--font-display);
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-stat-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.game-stat-icon {
    font-size: 1.2rem;
}

.game-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.score-stat {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.score-stat .game-stat-label {
    display: none;
}

.score-stat .game-stat-value {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(249, 240, 2, 0.6);
    font-size: 1.4rem;
}

.score-stat .game-stat-icon {
    color: var(--neon-yellow);
    font-size: 1.4rem;
}

.status-stat .game-stat-value {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
    font-size: 0.9rem;
}

.lives-stat .game-stat-value {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

#gameCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Game Overlay */
.game-overlay,
.game-over-screen {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    backdrop-filter: blur(5px);
}

.game-over-screen {
    display: none;
    flex-direction: column;
    gap: var(--space-md);
}

.overlay-content {
    text-align: center;
    padding: var(--space-lg);
    max-width: 600px;
}

.overlay-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 30px var(--neon-green-glow);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.1em;
}

.overlay-subtitle {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--neon-blue);
    margin-bottom: var(--space-md);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.controls-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.control-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.control-key {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--bg-dark);
    background: var(--neon-pink);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    box-shadow: 0 3px 0 #a01845, 0 0 15px var(--neon-pink-glow);
}

.control-action {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mobile-note {
    font-size: 0.85rem;
    color: var(--neon-blue);
    margin-bottom: var(--space-sm);
    opacity: 0.9;
}

.game-tips {
    text-align: left;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(5, 217, 232, 0.3);
    padding: var(--space-sm);
    border-radius: 4px;
}

.game-tips p {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.game-tips .warning-text {
    color: var(--neon-pink);
    font-weight: bold;
    margin-top: var(--space-xs);
    margin-bottom: 0;
}

.overlay-text {
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
}

.start-btn {
    margin-top: var(--space-md);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.game-over-content {
    text-align: center;
    padding: var(--space-lg);
}

.game-over-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 5rem);
    color: var(--neon-pink);
    margin-bottom: var(--space-md);
    animation: game-over-pulse 0.5s ease-out;
}

@keyframes game-over-pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.final-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.final-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.final-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-yellow);
    text-shadow: 0 0 30px rgba(249, 240, 2, 0.6);
}

.final-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

.game-over-message {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    min-height: 1.5em;
}

.game-over-tip {
    margin-top: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Leaderboard */
.leaderboard {
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--neon-blue);
    padding: var(--space-md);
}

.leaderboard-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: var(--space-md);
    letter-spacing: 0.2em;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(5, 217, 232, 0.1);
    border-left: 3px solid var(--neon-blue);
}

.leaderboard-item .rank {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neon-yellow);
    width: 40px;
}

.leaderboard-item .name {
    flex: 1;
    color: var(--text-primary);
}

.leaderboard-item .score {
    font-family: var(--font-mono);
    color: var(--neon-green);
}

/* ==========================================
   Tokenomics Section
   ========================================== */

.tokenomics-section {
    min-height: 100vh;
    padding: var(--space-xl) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 42, 109, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(5, 217, 232, 0.1) 0%, transparent 50%);
}

.token-chart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}

/* Pie Chart */
.pie-chart {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(
        var(--neon-pink) 0deg 180deg,
        var(--neon-blue) 180deg 270deg,
        var(--neon-green) 270deg 324deg,
        var(--neon-yellow) 324deg 360deg
    );
    box-shadow: 
        0 0 50px rgba(255, 42, 109, 0.3),
        0 0 100px rgba(5, 217, 232, 0.2);
    animation: chart-spin 20s linear infinite;
}

@keyframes chart-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green-glow);
    animation: chart-spin 20s linear infinite reverse;
}

.token-legend {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.legend-text {
    color: var(--text-secondary);
}

/* Disclaimer */
.disclaimer {
    text-align: center;
    padding: var(--space-md);
    border: 2px dashed var(--neon-yellow);
    max-width: 600px;
}

.disclaimer p:first-child {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neon-yellow);
    animation: disclaimer-flash 1s ease-in-out infinite;
}

@keyframes disclaimer-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.disclaimer .small {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* ==========================================
   Roadmap Section
   ========================================== */

.roadmap-section {
    min-height: 100vh;
    padding: var(--space-xl) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.timeline {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-green), var(--neon-blue), var(--neon-pink));
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: var(--space-lg);
}

.timeline-marker {
    position: absolute;
    left: 8px;
    width: 26px;
    height: 26px;
    background: var(--bg-dark);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: var(--neon-blue);
}

.timeline-item.completed .timeline-marker {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--bg-dark);
}

.timeline-item.current .timeline-marker {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    color: var(--bg-dark);
    animation: current-pulse 1.5s ease-in-out infinite;
}

@keyframes current-pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--neon-pink-glow); }
    50% { box-shadow: 0 0 20px 5px var(--neon-pink-glow); }
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid rgba(5, 217, 232, 0.3);
    padding: var(--space-md);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 15px;
    border: 5px solid transparent;
    border-right-color: rgba(5, 217, 232, 0.3);
}

.timeline-content h4 {
    font-family: var(--font-display);
    color: var(--neon-blue);
    margin-bottom: var(--space-sm);
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

/* ==========================================
   Footer
   ========================================== */

.cyber-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 42, 109, 0.3);
    padding: var(--space-lg) var(--space-md);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.footer-frog {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.footer-frog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-text {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--neon-blue);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--neon-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink-glow);
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 768px) {
    .cyber-nav {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .nav-links {
        position: static;
        transform: none;
        gap: var(--space-sm);
    }
    
    .wallet-connect {
        flex: none;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-card {
        width: 100%;
        max-width: 250px;
    }
    
    .token-chart {
        flex-direction: column;
    }
    
    .game-container {
        aspect-ratio: 3/4;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .frog-img {
        width: 180px;
    }
    
    .play-btn {
        width: 150px;
        height: 150px;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */

.hidden {
    display: none !important;
}

.visible {
    display: flex !important;
}

