:root {
    --bg-color: #0d0d12;
    --text-color: #ffffff;
    
    --neon-red: #ff2a2a;
    --neon-red-glow: rgba(255, 42, 42, 0.6);
    
    --neon-fire: #ff7b00;
    --neon-fire-glow: rgba(255, 123, 0, 0.6);
    
    --card-bg: rgba(0, 0, 0, 0.6);
    --card-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#app {
    width: 100%;
    max-width: 100%;
    padding: 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease forwards;
}

.screen.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.glow-title {
    font-family: 'Digital-7', 'Digital-7 Mono', monospace;
    font-size: 6vw;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 8px;
    white-space: nowrap;
    margin-top: -25vh;
    margin-bottom: 0.5rem;
    
    color: #ffe0b2;
    background: rgba(20, 10, 0, 0.65);
    -webkit-text-fill-color: initial;
    
    text-shadow: 
        0 0 8px #ff7b00,
        0 0 20px #ff7b00,
        0 0 40px #ff4500,
        0 0 70px #ff2200;
        
    border: 2px solid rgba(255, 123, 0, 0.6);
    border-radius: 12px;
    padding: 10px 40px;
    box-shadow: 0 0 25px rgba(255, 123, 0, 0.4), inset 0 0 20px rgba(255, 123, 0, 0.25);
    
    z-index: 10;
    position: relative;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    animation: ledFlicker 4s infinite alternate;
}

@keyframes ledFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(255, 123, 0, 0.7));
    }
    20%, 24%, 55% {
        opacity: 0.4;
        filter: drop-shadow(0 0 0px transparent);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.subtitle {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: none;
    text-align: center;
}

.neon-orange-text {
    font-weight: normal;
    background: none;
    -webkit-text-fill-color: initial;
    color: #ffcc00;
    text-shadow: 0 0 10px #ff6600, 0 0 20px #ff6600, 0 0 30px #ff6600;
    animation: neonPulseOrange 2s ease-in-out infinite alternate;
}

@keyframes neonPulseOrange {
    from {
        text-shadow: 0 0 10px rgba(255,153,0,0.4), 0 0 20px rgba(255,102,0,0.4);
    }
    to {
        text-shadow: 0 0 15px rgba(255,153,0,0.8), 0 0 30px rgba(255,102,0,0.8), 0 0 45px rgba(255,51,0,0.8);
    }
}

/* Cards */
.menu-options {
    display: flex;
    gap: 4rem;
    width: 100%;
    max-width: 1800px;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 2rem;
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.card {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card p {
    color: #aaa;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.card-red:hover {
    border-color: var(--neon-red);
    box-shadow: 0 10px 30px var(--neon-red-glow);
}

.card-fire:hover {
    border-color: var(--neon-fire);
    box-shadow: 0 10px 30px var(--neon-fire-glow);
}

.neon-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.neon-line.red { background: var(--neon-red); box-shadow: 0 0 10px var(--neon-red); }
.neon-line.fire { background: var(--neon-fire); box-shadow: 0 0 10px var(--neon-fire); }

.card:hover .neon-line { transform: scaleX(1); }

/* Inputs and Buttons */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

input[type="text"] {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    border-color: #fff;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.6);
    color: #a0a0a0;
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

/* Game Screens */
.game-screen {
    text-align: center;
}

.timer-display {
    font-size: 6rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px currentColor;
}

.segment-timer {
    font-family: 'Digital-7 Mono', 'Courier New', Courier, monospace;
    font-size: clamp(8rem, 20vw, 16rem);
    font-weight: normal;
    letter-spacing: 0.2rem;
    line-height: 1;
    text-shadow: 0 0 30px currentColor, 0 0 10px currentColor;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 1rem 3rem;
    border: 2px solid rgba(255, 42, 42, 0.4);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(0, 0, 0, 0.9);
}

.neon-red { color: var(--neon-red); }
.neon-fire { color: var(--neon-fire); }

.score-display {
    font-size: 2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.btn-massive {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-color);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    cursor: pointer;
}

.btn-massive:active {
    transform: scale(0.95);
}

.btn-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-color);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    cursor: pointer;
}

.btn-large:active {
    transform: scale(0.95);
}

.btn-red-glow {
    background: radial-gradient(circle at 30% 30%, #ff4d4d, #b30000);
    color: white;
    border: none !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    box-shadow: 
        0 15px 0 #660000, 
        0 20px 20px rgba(0,0,0,0.6),
        inset 0 -10px 20px rgba(0,0,0,0.4),
        inset 0 10px 20px rgba(255,255,255,0.4);
}

.btn-red-glow:hover { 
    background: radial-gradient(circle at 30% 30%, #ff6666, #cc0000);
    transform: translateY(-2px);
    box-shadow: 
        0 17px 0 #660000, 
        0 25px 30px rgba(255,0,0,0.4),
        inset 0 -10px 20px rgba(0,0,0,0.4),
        inset 0 10px 20px rgba(255,255,255,0.4);
}

.btn-red-glow:active, .btn-red-glow.active-press { 
    transform: translateY(15px) !important;
    box-shadow: 
        0 0 0 #660000, 
        0 0 10px rgba(0,0,0,0.6),
        inset 0 10px 20px rgba(0,0,0,0.6) !important;
}

.btn-fire-glow {
    background: radial-gradient(circle at 30% 30%, #ffa500, #b35900);
    color: white;
    border: none !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    box-shadow: 
        0 15px 0 #804000, 
        0 20px 20px rgba(0,0,0,0.6),
        inset 0 -10px 20px rgba(0,0,0,0.4),
        inset 0 10px 20px rgba(255,255,255,0.4);
}

.btn-fire-glow:hover { 
    background: radial-gradient(circle at 30% 30%, #ffb732, #cc6600);
    transform: translateY(-2px);
    box-shadow: 
        0 17px 0 #804000, 
        0 25px 30px rgba(255,165,0,0.4),
        inset 0 -10px 20px rgba(0,0,0,0.4),
        inset 0 10px 20px rgba(255,255,255,0.4);
}

.btn-fire-glow:active, .btn-fire-glow.active-press { 
    transform: translateY(15px) !important;
    box-shadow: 
        0 0 0 #804000, 
        0 0 10px rgba(0,0,0,0.6),
        inset 0 10px 20px rgba(0,0,0,0.6) !important;
}

/* Leaderboard */
.leaderboard-container {
    width: 100%;
    max-width: 500px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    max-height: 400px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.leaderboard-container::-webkit-scrollbar {
    width: 8px;
}
.leaderboard-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
.leaderboard-container::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

#leaderboard-list {
    list-style: none;
}

#leaderboard-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.2rem;
}

#leaderboard-list li:last-child {
    border-bottom: none;
}

#leaderboard-list li .rank {
    font-weight: 700;
    color: var(--neon-fire);
    width: 30px;
}
#leaderboard-list li.rank-1 .rank { color: #ffd700; text-shadow: 0 0 10px #ffd700; }
#leaderboard-list li.rank-2 .rank { color: #c0c0c0; text-shadow: 0 0 10px #c0c0c0; }
#leaderboard-list li.rank-3 .rank { color: #cd7f32; text-shadow: 0 0 10px #cd7f32; }

#leaderboard-list li .name {
    flex-grow: 1;
    text-align: left;
    margin-left: 1rem;
}

#leaderboard-list li .score {
    font-weight: 700;
}

.actions {
    display: flex;
    gap: 1rem;
}

/* Live Split Leaderboards */
.live-board {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    height: 350px;
    display: flex;
    flex-direction: column;
}

.live-board-red {
    border-top: 2px solid var(--neon-red);
    box-shadow: 0 -5px 15px rgba(255, 42, 42, 0.2);
}

.live-board-fire {
    border-top: 2px solid var(--neon-fire);
    box-shadow: 0 -5px 15px rgba(255, 140, 0, 0.2);
}

.live-board-header {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.live-badge {
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    box-shadow: 0 0 8px red;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.live-list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.live-list::-webkit-scrollbar {
    width: 6px;
}
.live-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
.live-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.live-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.live-list li.live-placeholder {
    justify-content: center;
    color: #888;
    background: transparent;
    font-style: italic;
    animation: none;
}

.live-board-red .live-list li .name { color: var(--neon-red); text-shadow: 0 0 5px var(--neon-red-glow); font-weight: 700; }
.live-board-fire .live-list li .name { color: var(--neon-fire); text-shadow: 0 0 5px var(--neon-fire-glow); font-weight: 700; }

@keyframes slideIn {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Game Header */
.game-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 2rem 3rem 0;
    box-sizing: border-box;
}

.btn-back-floating {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 100;
}

/* Game Content */
.game-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.player-display {
    font-size: 1.2rem;
    color: white;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.theme-red .player-display {
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 42, 42, 0.3);
    text-shadow: 0 0 5px var(--neon-red-glow);
}

.theme-fire .player-display {
    border-color: var(--neon-fire);
    box-shadow: 0 0 10px rgba(255, 128, 0, 0.3);
    text-shadow: 0 0 5px var(--neon-fire-glow);
}

/* =========================================
   ANIMATED FESTIVAL BACKGROUND
   ========================================= */
#animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background: #05020a;
}

.bg-image-layer {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url('bg-festival.png') no-repeat center center;
    background-size: cover;
    opacity: 0.8;
    animation: panBg 60s ease-in-out infinite alternate;
}

@keyframes panBg {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

/* Spotlights */
.spotlight {
    position: absolute;
    bottom: -10%;
    width: 100px;
    height: 150vh;
    background: linear-gradient(to top, rgba(255,255,255,0.3), transparent);
    border-radius: 50% 50% 0 0;
    transform-origin: bottom center;
    filter: blur(10px);
    opacity: 0.5;
    mix-blend-mode: screen;
}

.spotlight-left {
    left: 20%;
    animation: sweepLeft 8s ease-in-out infinite alternate;
}

.spotlight-right {
    right: 20%;
    background: linear-gradient(to top, rgba(255,200,0,0.3), transparent);
    animation: sweepRight 12s ease-in-out infinite alternate;
}

@keyframes sweepLeft {
    0% { transform: rotate(-30deg); }
    100% { transform: rotate(45deg); }
}

@keyframes sweepRight {
    0% { transform: rotate(30deg); }
    100% { transform: rotate(-45deg); }
}

/* Ferris Wheel */
.ferris-wheel-container {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 400px;
    height: 400px;
    opacity: 0.9;
    filter: drop-shadow(0 0 15px rgba(255, 150, 0, 0.8));
    z-index: 3;
}

.ferris-stand {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 260px solid rgba(20, 10, 5, 0.9);
    z-index: 1;
}

.ferris-wheel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid #ffcc00;
    box-shadow: 0 0 30px #ff9900, inset 0 0 30px #ff9900;
    animation: spinWheel 20s linear infinite;
    z-index: 2;
}

.ferris-spoke {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffcc00;
    transform-origin: center center;
    box-shadow: 0 0 10px #ff9900;
}

.ferris-carriage-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 3;
}

.carriage {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 50px;
    background: linear-gradient(to bottom, #ff0055, #880022);
    border-radius: 10px 10px 5px 5px;
    border: 2px solid #ffcc00;
    box-shadow: 0 0 15px #ff0055;
    animation: counterSpin 20s linear infinite;
}

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

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

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.particle {
    position: absolute;
    bottom: -10px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    left: var(--x);
    box-shadow: 0 0 10px #ffcc00, 0 0 20px #ff9900;
    animation: floatUp var(--d) linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(2); opacity: 0; }
}

.overlay-darken {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 5;
}


/* Rollercoaster */
.rollercoaster-container {
    position: absolute;
    bottom: 5%;
    left: -10%;
    width: 600px;
    height: 300px;
    z-index: 3;
    opacity: 0.9;
}
.coaster-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px #00d4ff);
}
.coaster-train {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.coaster-car {
    position: absolute;
    top: 0; left: 0;
    width: 25px;
    height: 15px;
    background: #ff007b;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 10px #ff007b, inset 0 0 5px #fff;
    offset-path: path("M -50 250 Q 150 250 250 50 T 450 150 T 700 250");
    animation: rideCoaster 4s linear infinite;
    offset-rotate: auto;
}

@keyframes rideCoaster {
    0% { offset-distance: 0%; }
    100% { offset-distance: 100%; }
}

/* Fireworks */
.fireworks-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 2;
}

.firework-wrapper {
    position: absolute;
    left: var(--left);
    top: 100vh;
    animation: fireworkWrapper 4s ease-out infinite;
    animation-delay: var(--delay);
}

.firework-rocket {
    position: absolute;
    width: 4px; height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 200, 0, 1);
    animation: fireworkRocket 4s ease-out infinite;
    animation-delay: var(--delay);
}

.firework-explosion {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    animation: fireworkExplode 4s ease-out infinite;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes fireworkWrapper {
    0% { top: 100vh; }
    40% { top: var(--top); }
    100% { top: var(--top); }
}

@keyframes fireworkRocket {
    0% { opacity: 1; transform: scale(1); }
    40% { opacity: 1; transform: scale(1); }
    42% { opacity: 0; transform: scale(0); }
    100% { opacity: 0; transform: scale(0); }
}

@keyframes fireworkExplode {
    0% { opacity: 0; box-shadow: none; transform: scale(1); }
    40% { opacity: 0; box-shadow: none; transform: scale(1); }
    42% {
        opacity: 1;
        box-shadow: 
            -30px -30px 0 0 #ff007b, 30px -30px 0 0 #00d4ff,
            -30px 30px 0 0 #ffcc00, 30px 30px 0 0 #ff2a2a,
            -45px 0 0 0 #00ff40, 45px 0 0 0 #8a2be2,
            0 -45px 0 0 #ff7a00, 0 45px 0 0 #fff;
        transform: scale(0.5);
    }
    60% {
        opacity: 0;
        box-shadow: 
            -80px -80px 0 -2px #ff007b, 80px -80px 0 -2px #00d4ff,
            -80px 80px 0 -2px #ffcc00, 80px 80px 0 -2px #ff2a2a,
            -100px 0 0 -2px #00ff40, 100px 0 0 -2px #8a2be2,
            0 -100px 0 -2px #ff7a00, 0 100px 0 -2px #fff;
        transform: scale(1.5);
    }
    100% { opacity: 0; }
}


/* Audio Player UI */
.audio-player {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #ffcc00;
    border-radius: 30px;
    padding: 10px 20px;
    z-index: 100;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    backdrop-filter: blur(5px);
}

.audio-btn {
    background: none;
    border: none;
    color: #ffcc00;
    font-size: 1.5rem;
    cursor: pointer;
    text-shadow: 0 0 10px #ffcc00;
    transition: transform 0.2s, text-shadow 0.2s;
}
.audio-btn:hover {
    transform: scale(1.2);
    text-shadow: 0 0 20px #fff;
}

.volume-control {
    display: flex;
    align-items: center;
}

#volume-slider {
    -webkit-appearance: none;
    width: 100px;
    height: 5px;
    background: #444;
    border-radius: 5px;
    outline: none;
}
#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ff007b;
    cursor: pointer;
    box-shadow: 0 0 10px #ff007b;
}

/* High Striker CSS */
.striker-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.striker-bell {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 3px solid #555;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.2s;
}
.striker-bell.ring {
    background: var(--neon-fire);
    border-color: #fff;
    box-shadow: 0 0 30px var(--neon-fire), 0 0 60px var(--neon-fire-glow);
    color: #000;
    animation: bellShake 0.1s infinite;
}

@keyframes bellShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(3px); }
    50% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}

.striker-track {
    width: 40px;
    height: 50vh;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--neon-fire);
    border-radius: 20px;
    position: relative;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column-reverse;
}

.striker-puck {
    width: 100%;
    height: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--neon-fire-glow), 0 0 30px var(--neon-fire);
    position: absolute;
    bottom: 0%;
    transition: none;
}

.striker-marker {
    position: absolute;
    right: -40px;
    font-size: 0.9rem;
    color: #aaa;
    font-family: monospace;
    transform: translateY(50%);
}

.striker-score-display {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
    text-shadow: 0 0 10px currentColor;
}
