@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;800&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    
    background-image: linear-gradient(rgba(11, 12, 16, 0.75), rgba(11, 12, 16, 0.85)), url('gta-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #1f2833;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
    
    animation: neonPulse 2s infinite alternate;
}


@keyframes neonPulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 128, 0.4),
                    0 0 20px rgba(255, 0, 128, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 0, 128, 0.8),
                    0 0 30px rgba(255, 0, 128, 0.6),
                    0 0 45px rgba(255, 0, 128, 0.4),
                    0 0 60px rgba(69, 162, 158, 0.3); 
    }
    100% {
        box-shadow: 0 0 12px rgba(255, 0, 128, 0.5),
                    0 0 25px rgba(255, 0, 128, 0.3);
    }
}

h1, h2 {
    text-transform: uppercase;
    color: #45a29e;
}

h1 span, h2 span {
    color: #ff007f;
}

input, select, button {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
    font-family: inherit;
    box-sizing: border-box;
}

input {
    background-color: #fff;
    color: #000;
    text-align: center;
    font-weight: bold;
}

select {
    background-color: #c5c6c7;
    color: #0b0c10;
    font-weight: bold;
}

button {
    background-color: #ff007f;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #cc0066;
    transform: scale(1.02);
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #45a29e;
    color: #45a29e;
}

.secondary-btn:hover {
    background-color: #45a29e;
    color: #0b0c10;
}

.answer-btn {
    background-color: #45a29e;
}

.answer-btn:hover {
    background-color: #66fcf1;
    color: #0b0c10;
}


.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#timer-box {
    background-color: #ff007f;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
}



.hidden {
    display: none !important;
}


.footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #c5c6c7;
    text-transform: none; 
}

.discord-link {
    color: #ff007f; 
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.discord-link:hover {
    color: #45a29e; 
    text-shadow: 0 0 10px #45a29e;
}

.btn-correct {
    background-color: #2ecc71 !important; 
    border-color: #2ecc71 !important;
}

.btn-wrong {
    background-color: #e74c3c !important; 
    border-color: #e74c3c !important;
}


#intro-screen {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0b0c10; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
    transition: opacity 1s ease-out; 
}

.intro-logo {
    width: 150px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.8)); 
    animation: introZoom 3s ease-in-out;
}


@keyframes introZoom {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }
    40% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.disclaimer {
    display: block;
    margin-top: 8px;
    font-size: 0.65rem; 
    color: #6c757d; 
    text-shadow: none; 
}


.custom-alert {
    position: fixed;
    top: -100px; 
    left: 50%;
    transform: translateX(-50%);
    background: #1f2833;
    border: 2px solid #ff007f; 
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: bold;
    z-index: 10000; 
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}


.custom-alert.show {
    top: 30px; 
}


.custom-alert .highlight {
    color: #45a29e; 
    text-shadow: 0 0 5px #45a29e;
}

.welcome-text {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
}

.welcome-text id {
    color: #45a29e;
}


.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    margin-bottom: 30px;
}


.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #45a29e;
    background: rgba(69, 162, 158, 0.05);
}

.stat-value {
    font-size: 1.6rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    color: #c5c6c7;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
}


.style-correct {
    color: #2ecc71;
    text-shadow: 0 0 5px rgba(46, 204, 113, 0.4);
}

.style-wrong {
    color: #e74c3c;
    text-shadow: 0 0 5px rgba(231, 76, 60, 0.4);
}


@media (min-width: 600px) {
    .stats-dashboard {
        grid-template-columns: repeat(4, 1fr);
    }
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 12, 16, 0.85); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11000; 
    opacity: 1;
    transition: all 0.3s ease;
}


.modal-content {
    background: #1f2833;
    border: 2px solid #45a29e; 
    box-shadow: 0 0 25px rgba(69, 162, 158, 0.5);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: left;
}

.modal-content h2 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.modal-text p {
    font-size: 0.9rem;
    color: #c5c6c7;
    line-height: 1.5;
    margin-bottom: 15px;
}

.modal-text strong {
    color: #ff007f; 
}


.info-link {
    color: #45a29e;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.85rem;
    margin-left: 5px;
}

.info-link:hover {
    color: #ff007f;
    text-shadow: 0 0 5px #ff007f;
}


.beta-badge-corner {
    position: absolute;
    top: 15px; 
    right: 15px; 
    color: #45a29e; 
    font-family: 'Courier New', Courier, monospace; 
    font-size: 0.8rem;
    font-weight: bold;
    text-shadow: 0 0 5px #45a29e; 
    pointer-events: none; 
}


@media (max-width: 400px) {
    .beta-badge {
        top: 10px;
        right: 10px;
        font-size: 0.6rem;
        padding: 4px 8px;
    }
}


.login-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0 25px 0;
    cursor: pointer;
    color: #c5c6c7;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
    transition: 0.3s;
}


.login-toggle input {
    display: none;
}


.toggle-switch {
    width: 30px;
    height: 15px;
    background: #1f2833;
    border: 1px solid #45a29e;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 9px;
    height: 9px;
    background: #45a29e;
    border-radius: 50%;
    transition: 0.3s;
}


.login-toggle input:checked + .toggle-switch {
    background: #45a29e;
}

.login-toggle input:checked + .toggle-switch::before {
    left: 17px;
    background: #fff;
}

.login-toggle:hover {
    color: #fff;
}


.logout-btn {
    margin-top: 15px;
    border-color: rgba(255, 0, 128, 0.5) !important; 
    color: #c5c6c7 !important;
}

.logout-btn:hover {
    background: rgba(255, 0, 128, 0.1) !important;
    border-color: #ff007f !important;
    color: #fff !important;
}

.quiz-image {
    max-width: 100%;
    max-height: 200px; 
    border: 2px solid #45a29e;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.update-timestamp {
    font-size: 0.85rem;
    color: #45a29e; 
    font-family: 'Courier New', monospace;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(69, 162, 158, 0.5);
}


.leaderboard-container {
    max-height: 600px; 
    overflow-y: auto;
    margin-bottom: 25px;
    border: 1px solid #45a29e;
    border-radius: 8px;
    background: #0b0c10;
    width: 100%;
}






.leaderboard-container::-webkit-scrollbar {
    width: 10px;
}


.leaderboard-container::-webkit-scrollbar-track {
    background: #0b0c10; 
    border-left: 1px solid rgba(69, 162, 158, 0.2);
    border-radius: 0 8px 8px 0;
}


.leaderboard-container::-webkit-scrollbar-thumb {
    background: #45a29e; 
    border-radius: 5px;
}


.leaderboard-container::-webkit-scrollbar-thumb:hover {
    background: #ff007f; 
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #c5c6c7;
}

.leaderboard-table th, .leaderboard-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(69, 162, 158, 0.2);
}

.leaderboard-table th {
    background: #1f2833;
    color: #ff007f; 
    font-weight: bold;
    text-transform: uppercase;
    position: sticky;
    top: 0;
}


.leaderboard-table tr:hover {
    background: rgba(255, 0, 128, 0.05);
}


.top-three {
    font-weight: bold;
}
.rank-1 { color: #ffd700; background: rgba(255, 215, 0, 0.03); } 
.rank-2 { color: #c0c0c0; background: rgba(192, 192, 192, 0.03); } 
.rank-3 { color: #cd7f32; background: rgba(205, 127, 50, 0.03); } 


.leaderboard-table .style-correct { color: #2ecc71; }
.leaderboard-table .style-wrong { color: #e74c3c; }

.audio-player-container {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 15px;
    padding: 10px 20px;
    background: rgb(31 40 51); 
    border: 1px solid #ff007f;
    border-radius: 50px; 
    animation: neonPulse 2s infinite alternate;
    
    
    position: fixed;
    bottom: 1px; 
    left: 5%;
    height: 3%;
    transform: translateX(-50%); 
    
    z-index: 1000; 
}

#audio-toggle {
    background: none;
    border: none;
    color: #ff007f;
    font-size: 1.5rem; 
    cursor: pointer;
    transition: transform 0.2s;
}

#audio-toggle:hover {
    transform: scale(1.1); 
}

#volume-slider {
    width: 100px;
    cursor: pointer;
    accent-color: #45a29e; 
}

.streamer-btn-preview {
    background: rgba(31, 40, 51, 0.4) !important;
    border: 1px dashed #555 !important; 
    color: #666 !important;
    cursor: not-allowed; 
    opacity: 0.6;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    padding: 12px;
    margin: 8px 0;
    border-radius: 5px;
    width: 100%;
    display: block;
}

.audio-player-container.hidden {
    display: none !important;
    pointer-events: none !important; 
}

#game-logo {
    display: block;
    margin: 0 auto 20px auto; 
    
    
    max-width: 90px;
    max-height: 90px;
    
    
    object-fit: contain; 
    
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.5));
}


@media (max-width: 600px) {
    #game-logo {
        max-width: 180px;
    }
}


#bg-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    background-size: cover;
    background-position: center;
    transition: background-image 2s ease-in-out; 
    filter: brightness(0.4); 
}


.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.lang-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00d4ff; 
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 5px 10px;
    transition: all 0.3s ease;
    opacity: 0.5;
    filter: grayscale(100%);
}

.lang-btn:hover {
    box-shadow: 0 0 10px #00d4ff;
    opacity: 0.8;
}


.lang-btn.active {
    opacity: 1;
    filter: grayscale(0%);
    box-shadow: 0 0 10px #00d4ff;
    border-color: #fff;
}


@media (max-width: 600px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    .lang-btn {
        font-size: 1.2rem;
        padding: 4px 8px;
    }
}

/* =========================================
   V1.0 - MODERN VICE CITY THEME
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400&family=Permanent+Marker&display=swap');

:root {
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --dark-bg: #0b0c10;
    --glass-bg: rgba(20, 20, 35, 0.7);
    --glass-border: rgba(0, 255, 255, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}


.vc-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(180deg, #12002b 0%, #35005c 40%, #000000 100%);
    overflow: hidden;
}


.vc-sun {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(180deg, #ffea00 0%, #ff00ff 100%);
    border-radius: 50%;
    box-shadow: 0 0 50px #ff00ff, 0 0 100px #ffea00;
    
    mask-image: linear-gradient(to bottom, black 50%, transparent 50%, transparent 52%, black 52%, black 65%, transparent 65%, transparent 68%, black 68%, black 80%, transparent 80%, transparent 84%, black 84%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 50%, transparent 52%, black 52%, black 65%, transparent 65%, transparent 68%, black 68%, black 80%, transparent 80%, transparent 84%, black 84%);
}


.vc-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background-image: 
        linear-gradient(transparent 65%, rgba(0, 255, 255, 0.8) 70%, transparent 75%),
        linear-gradient(90deg, transparent 48%, rgba(255, 0, 255, 0.5) 50%, transparent 52%);
    background-size: 100% 40px, 40px 100%;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: top;
    animation: moveGrid 3s linear infinite;
}

@keyframes moveGrid {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 40px, 0 0; }
}


.container.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1), inset 0 0 20px rgba(255, 0, 255, 0.05);
    position: relative;
    text-align: center;
}

.version-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(45deg, var(--neon-pink), #ff5e00);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 0 10px var(--neon-pink);
}

.neon-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    margin-bottom: 10px;
}
.neon-title span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.highlight-cyan { color: var(--neon-cyan); }
.neon-text { color: var(--neon-pink); text-shadow: 0 0 5px var(--neon-pink); }


.btn-primary, .btn-secondary, .answer-btn {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: #fff;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 15px;
}

.btn-primary:hover, .answer-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: var(--neon-pink);
}
.btn-secondary:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink);
}


.countdown-widget {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 25px 0;
}
.countdown-widget h3 {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 10px;
}
.timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.time-box span {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}
.time-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
}


.modern-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
}
.stat-box {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    flex: 1;
}
.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}
.correct-box .stat-value { color: #00ff88; text-shadow: 0 0 5px #00ff88; }
.wrong-box .stat-value { color: #ff3366; text-shadow: 0 0 5px #ff3366; }


.trusted-by {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.trusted-by p {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.streamer-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.tag {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
}


.hidden { display: none !important; }


.timer-toggle-container {
    margin: 15px 0 25px 0;
    display: flex;
    justify-content: center;
}

.neon-toggle-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.neon-toggle-label input {
    display: none; 
}


.neon-toggle-switch {
    width: 45px;
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
}


.neon-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #666;
    border-radius: 50%;
    transition: 0.3s;
}


.neon-toggle-label input:checked + .neon-toggle-switch {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.neon-toggle-label input:checked + .neon-toggle-switch::after {
    left: 24px;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
}


.neon-toggle-text {
    color: #888;
    font-size: 0.95rem;
    transition: 0.3s;
}

.neon-toggle-label input:checked ~ .neon-toggle-text {
    color: #fff;
    text-shadow: 0 0 5px var(--neon-cyan);
}


.section-title {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 0 5px var(--neon-cyan);
    margin: 15px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mt-20 { margin-top: 20px; }
.mt-15 { margin-top: 15px; }


.game-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px;
    width: calc(33% - 10px); 
    min-width: 90px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.game-card.active {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), inset 0 0 10px rgba(0, 255, 255, 0.2);
    transform: scale(1.05);
}

.game-card span {
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 8px;
    color: #ccc;
    text-align: center;
}

.game-card.active span {
    color: #fff;
    text-shadow: 0 0 5px var(--neon-cyan);
}


.game-card img {
    max-width: 100%;
    height: 40px;
    object-fit: contain;
}
.logo-placeholder {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
}


.diff-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.diff-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #888;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    flex: 1; 
    transition: all 0.3s ease;
}

.diff-btn:hover {
    background: rgba(255, 0, 255, 0.1);
    color: #fff;
}

.diff-btn.active {
    background: var(--neon-pink);
    color: #000;
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink);
}


.action-row {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.action-row button {
    margin-bottom: 0; 
    flex: 1; 
}

.vc-background, .vc-sun, .vc-grid, .vc-palms {
    pointer-events: none;
}


#retro-car-wrapper {
    position: absolute;
    bottom: 12%; 
    left: -300px; 
    width: 250px; 
    z-index: 1; 
    pointer-events: none; 
    
    
    transition: transform 10s linear; 
    transform: translateX(0);
}


#retro-car {
    width: 100%;
    display: block;
    
    filter: drop-shadow(0px 15px 20px rgba(255, 0, 255, 0.7)); 
}


.drive-by {
    
    transform: translateX(calc(100vw + 600px)) !important;
}




.container {
    max-width: 950px;
    padding: 15px 25px; 
    margin: 10px auto;
}


.neon-title {
    font-size: 2rem;
    margin-bottom: 2px;
}

.subtitle {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.welcome-text {
    font-size: 1.1rem;
    margin: 5px 0;
}

.section-title {
    font-size: 0.95rem;
    margin: 8px 0 6px 0; 
}


.mt-20 { margin-top: 8px !important; }
.mt-15 { margin-top: 6px !important; }


.countdown-widget {
    padding: 6px 12px;
    margin-bottom: 8px;
}

.countdown-widget h3 {
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.time-box span {
    font-size: 1.1rem;
}

.time-box small {
    font-size: 0.65rem;
}


.stats-dashboard {
    gap: 8px;
    margin-bottom: 8px;
}

.stat-box {
    padding: 6px 10px;
}

.stat-value {
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.7rem;
}


.game-grid {
    gap: 10px;
}

.game-card {
    height: 95px !important; 
    padding: 6px;
}

.card-title {
    font-size: 0.85rem;
}


.diff-grid {
    gap: 8px;
}

.diff-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.timer-toggle-container {
    margin-top: 8px;
}

.neon-toggle-text {
    font-size: 0.85rem;
}


.action-row {
    margin-top: 10px;
    gap: 10px;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.streamer-btn-preview {
    font-size: 0.75rem;
    padding: 6px 12px;
}

.trusted-by {
    margin-top: 8px;
    font-size: 0.75rem;
}

.footer {
    margin-top: 8px;
    font-size: 0.75rem;
}