:root {
    --bg-dark: #000000;
    /* True Black */
    --neon-pink: #FFFFFF;
    /* White Text */
    --neon-blue: #59BF59;
    /* Napster Green */
    --neon-purple: #CCCCCC;
    /* Silver/Metallic */
    --text-glow: 0 0 5px rgba(255, 255, 255, 0.3);
    --box-glow: 0 0 5px #59BF59;
    --font-main: 'Montserrat', sans-serif;
}

body {
    background: radial-gradient(circle at center, #222222 0%, #000000 100%);
    /* Deep Black Gradient */
    color: white;
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    /* Prevent scrolling */
}

h1,
h2,
h3 {
    text-transform: unused;
    /* Let text case be normal or managed by class */
    text-shadow: 2px 2px 0px #000000;
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    color: white;
    animation: none;
    font-weight: 900;
}

.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
}

/* UI Elements */
.btn-neon {
    background: linear-gradient(to bottom, #7acc7a 0%, #59BF59 100%);
    /* Green Gradient */
    border: 1px solid #459645;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.4), 2px 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
    margin: 10px;
    border-radius: 5px;
    /* Slight round, mostly blocky */
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
}

.btn-neon:hover {
    background: linear-gradient(to bottom, #59BF59 0%, #459645 100%);
    transform: translateY(1px);
}



.card {
    background: rgba(0, 0, 0, 0.6);
    /* Glassy/Metallic */
    border: 1px solid #888;
    padding: 20px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 5px 15px rgba(0, 0, 0, 0.5);
    color: white;
}

/* TV Specifics */
body.tv-mode {
    font-size: 2rem;
}

.qr-container {
    background: white;
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
}

/* Player Specifics */
/* Player Options */
/* Player Options */
.option-btn {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    background: #e0e0e0;
    border: 1px solid #999;
    color: #333;
    font-size: 1.2rem;
    text-align: left;
    cursor: pointer;
    border-radius: 3px;
    font-weight: bold;
    transition: all 0.1s;
    box-shadow: inset 1px 1px 0 white, 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Verdana', sans-serif;
    /* Tech feel */
}

.option-btn:hover {
    background: #ffffff;
    border-color: var(--neon-blue);
}

.option-btn:active,
.option-btn.selected {
    background: var(--neon-blue);
    color: white;
    border-color: #3e8e3e;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Animations */
/* Animations Removed */

.timer {
    font-size: 4rem;
    color: var(--neon-blue);
    margin: 20px 0;
}

/* Logo Animations */
@keyframes jamming {
    0% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(-12deg);
    }

    100% {
        transform: rotate(-8deg);
    }
}

@keyframes pumping {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        /* More subtle pump */
    }

    100% {
        transform: scale(1);
    }
}

@keyframes jump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bunny {
    animation: jump 1s ease-in-out infinite;
    transform-box: fill-box;
}

.jamming-b {
    animation: jamming 1s ease-in-out infinite;
    transform-origin: 0px 20px;
    /* Pivot from baseline center */
}

.pumping-phones {
    animation: pumping 0.5s ease-in-out infinite;
    transform-origin: 0px -20px;
}

@keyframes sound-pulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.sound-wave {
    animation: sound-pulse 1.5s infinite linear;
    transform-origin: 0 5px;
    /* Pivot near the bottom of the arc to radiate out */
    opacity: 0;
}

.sound-wave.delay {
    animation-delay: 0.5s;
}

/* Scoreboard Rows */
.player-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin: 5px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 1.5rem;
}

.player-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}