/* 🎮 ARCADE NEON THEME - COMPLETE REDESIGN 🎮 */

/* Import Arcade Fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron:wght@400;700;900&family=Chakra+Petch:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* 🎮 ARCADE NEON COLOR PALETTE */
:root {
    /* Primary Colors */
    --arcade-bg: #0A0A10;
    --neon-pink: #FF00A0;
    --neon-cyan: #00E6FF;
    --pixel-yellow: #FFD400;
    --text-off-white: #F5F7FF;
    --lime-glow: #4FFF90;
    
    /* Secondary Colors */
    --dark-purple: #1A0A1A;
    --neon-purple: #8B00FF;
    --electric-blue: #0080FF;
    --arcade-red: #FF0040;
    --neon-green: #00FF40;
    
    /* Gradients */
    --neon-gradient: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan), var(--pixel-yellow));
    --cyber-gradient: linear-gradient(135deg, var(--arcade-bg) 0%, var(--dark-purple) 100%);
    --glow-gradient: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
}

/* 🎮 BASE STYLES */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--arcade-bg);
    color: var(--text-off-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* 🎮 ARCADE FONTS */
.font-arcade {
    font-family: 'Press Start 2P', monospace;
}

.font-tech {
    font-family: 'Orbitron', monospace;
}

.font-chakra {
    font-family: 'Chakra Petch', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* 🎮 NEON GLOW EFFECTS */
.neon-glow {
    box-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor,
        0 0 20px currentColor;
}

.neon-pink-glow {
    color: var(--neon-pink);
    text-shadow: 
        0 0 5px var(--neon-pink),
        0 0 10px var(--neon-pink),
        0 0 15px var(--neon-pink),
        0 0 20px var(--neon-pink);
}

.neon-cyan-glow {
    color: var(--neon-cyan);
    text-shadow: 
        0 0 5px var(--neon-cyan),
        0 0 10px var(--neon-cyan),
        0 0 15px var(--neon-cyan),
        0 0 20px var(--neon-cyan);
}

.neon-yellow-glow {
    color: var(--pixel-yellow);
    text-shadow: 
        0 0 5px var(--pixel-yellow),
        0 0 10px var(--pixel-yellow),
        0 0 15px var(--pixel-yellow),
        0 0 20px var(--pixel-yellow);
}

.neon-lime-glow {
    color: var(--lime-glow);
    text-shadow: 
        0 0 5px var(--lime-glow),
        0 0 10px var(--lime-glow),
        0 0 15px var(--lime-glow),
        0 0 20px var(--lime-glow);
}

/* 🎮 PIXEL BORDERS */
.pixel-border {
    border: 3px solid var(--neon-cyan);
    border-image: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan), var(--pixel-yellow)) 1;
    position: relative;
}

.pixel-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--neon-gradient);
    z-index: -1;
    border-radius: inherit;
}

.pixel-border-thick {
    border: 6px solid var(--neon-cyan);
    border-image: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan), var(--pixel-yellow)) 1;
}

/* 🎮 ARCADE ANIMATIONS */
@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes neon-pulse {
    0%, 100% { 
        box-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor;
    }
    50% { 
        box-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
    }
}

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

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

@keyframes neon-rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes pixel-glow {
    0%, 100% { 
        box-shadow: 0 0 10px var(--neon-cyan), inset 0 0 10px var(--neon-cyan);
    }
    50% { 
        box-shadow: 0 0 20px var(--neon-pink), inset 0 0 20px var(--neon-pink);
    }
}

@keyframes pacman-maze {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* 🎮 ANIMATION CLASSES */
.animate-neon-flicker {
    animation: neon-flicker 2s ease-in-out infinite;
}

.animate-neon-pulse {
    animation: neon-pulse 2s ease-in-out infinite;
}

.animate-pixel-bounce {
    animation: pixel-bounce 1s ease-in-out infinite;
}

.animate-arcade-spin {
    animation: arcade-spin 3s linear infinite;
}

.animate-neon-rainbow {
    animation: neon-rainbow 3s linear infinite;
}

.animate-pixel-glow {
    animation: pixel-glow 2s ease-in-out infinite;
}

/* 🎮 BUTTON STYLES */
.btn-arcade {
    background: var(--neon-gradient);
    color: var(--arcade-bg);
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    padding: 15px 30px;
    border: 3px solid var(--neon-cyan);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 0 10px var(--neon-cyan),
        inset 0 0 10px rgba(0, 230, 255, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-arcade::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;
}

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

.btn-arcade:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 20px var(--neon-pink),
        0 0 30px var(--neon-cyan),
        inset 0 0 20px rgba(255, 0, 160, 0.3);
    border-color: var(--neon-pink);
    color: var(--arcade-bg);
    text-decoration: none;
}

.btn-arcade:active {
    transform: translateY(0);
    box-shadow: 
        0 0 5px var(--neon-cyan),
        inset 0 0 5px rgba(0, 230, 255, 0.2);
}

/* 🎮 PRESS START BUTTON */
.btn-press-start {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan));
    color: var(--arcade-bg);
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    padding: 20px 40px;
    border: 4px solid var(--pixel-yellow);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 0 15px var(--pixel-yellow),
        inset 0 0 15px rgba(255, 212, 0, 0.3);
    animation: neon-pulse 2s ease-in-out infinite;
    text-decoration: none;
    display: inline-block;
}

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

.btn-press-start:hover::before {
    left: 100%;
}

.btn-press-start:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 25px var(--neon-pink),
        0 0 35px var(--neon-cyan),
        0 0 45px var(--pixel-yellow),
        inset 0 0 25px rgba(255, 0, 160, 0.4);
    border-color: var(--neon-pink);
    color: var(--arcade-bg);
    text-decoration: none;
}

/* 🎮 Smaller variant for nav CTA */
.btn-press-start--sm {
    font-size: 10px;
    padding: 10px 20px;
    border-width: 2px;
    letter-spacing: 2px;
}

/* 🎮 CARD STYLES */
.card-arcade {
    background: linear-gradient(135deg, rgba(10, 10, 16, 0.9), rgba(26, 10, 26, 0.9));
    border: 2px solid var(--neon-cyan);
    border-radius: 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(0, 230, 255, 0.3),
        inset 0 0 20px rgba(0, 230, 255, 0.1);
    transition: all 0.3s ease;
}

.card-arcade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--neon-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.card-arcade:hover::before {
    opacity: 0.1;
}

.card-arcade:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 
        0 0 30px rgba(255, 0, 160, 0.4),
        0 0 40px rgba(0, 230, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 160, 0.2);
}

/* 🎮 GAME SCREEN STYLE */
.game-screen {
    background: var(--arcade-bg);
    border: 4px solid var(--neon-cyan);
    border-radius: 0;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 25px var(--neon-cyan),
        inset 0 0 25px rgba(0, 230, 255, 0.2);
}

.game-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 230, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 160, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* 🎮 NAVIGATION STYLES */
.nav-arcade {
    background: rgba(10, 10, 16, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--neon-cyan);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.3);
}

.nav-link-arcade {
    color: var(--text-off-white);
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link-arcade::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

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

.nav-link-arcade:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    text-decoration: none;
}

/* 🎮 LOGO STYLES */
.logo-arcade {
    font-family: 'Press Start 2P', monospace;
    font-size: 24px;
    color: var(--neon-cyan);
    text-shadow: 
        0 0 5px var(--neon-cyan),
        0 0 10px var(--neon-cyan),
        0 0 15px var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-arcade:hover {
    color: var(--neon-pink);
    text-shadow: 
        0 0 5px var(--neon-pink),
        0 0 10px var(--neon-pink),
        0 0 15px var(--neon-pink);
    transform: scale(1.05);
    text-decoration: none;
}

/* 🎮 HERO SECTION */
.hero-arcade {
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 230, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 160, 0.1) 0%, transparent 50%),
        var(--arcade-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-arcade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMiIgZmlsbD0iIzAwRTZGRiIgZmlsbC1vcGFjaXR5PSIwLjEiLz4KPC9zdmc+') repeat;
    animation: pacman-maze 20s linear infinite;
    opacity: 0.3;
}

.hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 48px;
    color: var(--neon-cyan);
    text-align: center;
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 30px var(--neon-cyan);
    margin-bottom: 30px;
    animation: neon-flicker 3s ease-in-out infinite;
}

.hero-subtitle {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    color: var(--text-off-white);
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* 🎮 BONUS CARDS */
.bonus-card {
    background: linear-gradient(135deg, rgba(10, 10, 16, 0.9), rgba(26, 10, 26, 0.9));
    border: 3px solid var(--neon-cyan);
    border-radius: 0;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(0, 230, 255, 0.3),
        inset 0 0 20px rgba(0, 230, 255, 0.1);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--neon-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.bonus-card:hover::before {
    opacity: 0.1;
}

.bonus-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-pink);
    box-shadow: 
        0 0 30px rgba(255, 0, 160, 0.4),
        0 0 40px rgba(0, 230, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 160, 0.2);
}

.bonus-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 16px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.bonus-amount {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--pixel-yellow);
    margin-bottom: 10px;
    text-shadow: 0 0 15px var(--pixel-yellow);
}

.bonus-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-off-white);
    opacity: 0.8;
    margin-bottom: 20px;
}

/* 🎮 CASINO CARDS */
.casino-card {
    background: linear-gradient(135deg, rgba(10, 10, 16, 0.9), rgba(26, 10, 26, 0.9));
    border: 2px solid var(--neon-cyan);
    border-radius: 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 15px rgba(0, 230, 255, 0.2),
        inset 0 0 15px rgba(0, 230, 255, 0.1);
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 
        0 0 25px rgba(255, 0, 160, 0.3),
        0 0 35px rgba(0, 230, 255, 0.2),
        inset 0 0 25px rgba(255, 0, 160, 0.1);
}

.casino-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 15px;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
    transition: all 0.3s ease;
}

.casino-card:hover .casino-logo {
    filter: drop-shadow(0 0 15px var(--neon-pink));
    transform: scale(1.1);
}

.casino-name {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--neon-cyan);
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.casino-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.rating-star {
    color: var(--pixel-yellow);
    font-size: 16px;
    text-shadow: 0 0 5px var(--pixel-yellow);
}

/* 🎮 FOOTER STYLES */
.footer-arcade {
    background: linear-gradient(135deg, var(--arcade-bg), var(--dark-purple));
    border-top: 3px solid var(--neon-cyan);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.footer-arcade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 230, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 160, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-logo {
    font-family: 'Press Start 2P', monospace;
    font-size: 20px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-off-white);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
    transform: translateX(5px);
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--neon-gradient);
    border: 2px solid var(--neon-cyan);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--arcade-bg);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 20px var(--neon-pink);
    border-color: var(--neon-pink);
    color: var(--arcade-bg);
    text-decoration: none;
}

/* 🎮 GRADIENT EMOJIS */
.emoji-gradient {
    background: linear-gradient(45deg, #FF00A0, #00E6FF, #FFD400, #4FFF90);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    filter: drop-shadow(0 0 8px rgba(0, 230, 255, 0.6)) 
            drop-shadow(0 0 12px rgba(255, 0, 160, 0.4));
    display: inline-block;
}

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

/* Pulsing emoji with gradient */
.emoji-pulse-gradient {
    background: linear-gradient(135deg, #FF00A0, #00E6FF, #FFD400);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite, emoji-pulse-effect 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 230, 255, 0.7)) 
            drop-shadow(0 0 15px rgba(255, 0, 160, 0.5));
    display: inline-block;
}

@keyframes emoji-pulse-effect {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 230, 255, 0.7)) 
                drop-shadow(0 0 15px rgba(255, 0, 160, 0.5));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 212, 0, 0.8)) 
                drop-shadow(0 0 20px rgba(255, 0, 160, 0.6));
    }
}

/* 🎮 RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .btn-arcade {
        font-size: 10px;
        padding: 12px 24px;
    }
    
    .btn-press-start {
        font-size: 12px;
        padding: 16px 32px;
    }
    
    .bonus-card {
        padding: 20px;
    }
    
    .bonus-title {
        font-size: 14px;
    }
    
    .bonus-amount {
        font-size: 20px;
    }
    
    .casino-card {
        padding: 15px;
    }
    
    .casino-logo {
        width: 60px;
        height: 60px;
    }
    
    .casino-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .btn-arcade {
        font-size: 8px;
        padding: 10px 20px;
    }
    
    .btn-press-start {
        font-size: 10px;
        padding: 14px 28px;
    }
    
    .bonus-card {
        padding: 15px;
    }
    
    .bonus-title {
        font-size: 12px;
    }
    
    .bonus-amount {
        font-size: 18px;
    }
}

/* 🎮 UTILITY CLASSES */
.text-arcade {
    font-family: 'Press Start 2P', monospace;
}

.text-tech {
    font-family: 'Orbitron', monospace;
}

.text-chakra {
    font-family: 'Chakra Petch', sans-serif;
}

.text-inter {
    font-family: 'Inter', sans-serif;
}

.bg-arcade {
    background: var(--arcade-bg);
}

.bg-cyber {
    background: var(--cyber-gradient);
}

.text-neon-pink {
    color: var(--neon-pink);
}

.text-neon-cyan {
    color: var(--neon-cyan);
}

.text-pixel-yellow {
    color: var(--pixel-yellow);
}

.text-lime-glow {
    color: var(--lime-glow);
}

.border-neon {
    border-color: var(--neon-cyan);
}

.border-neon-pink {
    border-color: var(--neon-pink);
}

.border-pixel-yellow {
    border-color: var(--pixel-yellow);
}

/* 🎮 SCROLLBAR STYLING */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--arcade-bg);
    border: 1px solid var(--neon-cyan);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-gradient);
    border: 2px solid var(--arcade-bg);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

/* 🎮 SELECTION STYLING */
::selection {
    background: var(--neon-cyan);
    color: var(--arcade-bg);
    text-shadow: none;
}

::-moz-selection {
    background: var(--neon-cyan);
    color: var(--arcade-bg);
    text-shadow: none;
}

/* 🎮 FOCUS STYLES */
:focus {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

/* 🎮 LOADING ANIMATION */
@keyframes arcade-loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-arcade {
    width: 40px;
    height: 40px;
    border: 4px solid var(--neon-cyan);
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: arcade-loading 1s linear infinite;
    margin: 20px auto;
}

/* 🎮 PARTICLE EFFECTS */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    animation: particle-float 3s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 0.7;
    }
}

/* 🎮 GRID LINES EFFECT */
.grid-lines {
    position: relative;
}

.grid-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 230, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 230, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.3;
}

/* 🎮 SCAN LINES EFFECT */
.scan-lines {
    position: relative;
    overflow: hidden;
}

.scan-lines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 230, 255, 0.03) 50%,
        transparent 100%
    );
    background-size: 100% 4px;
    animation: scan-lines 2s linear infinite;
    pointer-events: none;
}

@keyframes scan-lines {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}



