﻿/* Le Maillon Faible - Theme v4 — TV Show Look */

:root {
    --bg-dark: #06041a;
    --bg-mid: #0d0b2e;
    --bg-card: rgba(13, 11, 46, 0.92);
    --bg-card-hover: rgba(20, 16, 60, 0.95);
    --gold: #d4a827;
    --gold-light: #f0d060;
    --gold-dim: rgba(212, 168, 39, 0.25);
    --gold-glow: rgba(212, 168, 39, 0.12);
    --purple: #5c2d91;
    --purple-glow: rgba(92, 45, 145, 0.35);
    --text: #ddd8f0;
    --text-dim: rgba(221, 216, 240, 0.45);
    --text-bright: #ffffff;
    --danger: #d32f2f;
    --danger-glow: rgba(211, 47, 47, 0.25);
    --success: #43a047;
    --success-glow: rgba(67, 160, 71, 0.25);
    --border: rgba(212, 168, 39, 0.18);
    --border-bright: rgba(212, 168, 39, 0.55);
}

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

body {
    font-family: 'Lato', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(92,45,145,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(212,168,39,0.06) 0%, transparent 50%);
}

/* ===================== BUTTONS ===================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #b8911e 100%);
    color: #1a1145;
    box-shadow: 0 4px 20px var(--gold-dim);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,39,0.45);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #b71c1c 100%);
    color: #fff;
    box-shadow: 0 4px 18px var(--danger-glow);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #2e7d32 100%);
    color: #fff;
}

.btn-small { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

.btn-icon {
    background: transparent;
    border: 1px solid rgba(211,47,47,0.3);
    color: var(--danger);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-icon:hover { background: rgba(211,47,47,0.1); border-color: var(--danger); }

/* ===================== NAVIGATION ===================== */

.navbar {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(6,4,26,0.97) 0%, rgba(13,11,46,0.95) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--gold-dim);
    padding: 0 2rem;
    height: 60px;
    align-items: center;
    justify-content: center;
}

.navbar.visible { display: flex; }

.nav-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px var(--gold-dim);
}

/* ===================== MAIN LAYOUT ===================== */

.main-content { display: none; padding-top: 80px; min-height: 100vh; }
.main-content.visible { display: block; }

.container { max-width: 1400px; margin: 0 auto; padding: 2rem 3rem; }
.page { display: none; }
.page.active { display: block; }

/* ===================== HEADERS ===================== */

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px var(--gold-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-subtitle {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    font-style: italic;
}

/* ===================== CARDS ===================== */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.card:hover { border-color: var(--border-bright); background: var(--bg-card-hover); }

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.card-meta { color: var(--text-dim); font-size: 1rem; margin-bottom: 1rem; }

/* ===================== PLAYER INPUTS ===================== */

.player-input-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.player-name-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(0,0,0,0.5);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 1.15rem;
    font-family: 'Lato', sans-serif;
}

.player-name-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.error-msg {
    color: var(--danger);
    font-size: 1rem;
    margin-top: 1rem;
    display: none;
}

/* ===================== PLAYER TAGS ===================== */

.game-players-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.player-tag {
    padding: 0.5rem 1.2rem;
    background: rgba(92,45,145,0.15);
    border: 2px solid rgba(92,45,145,0.3);
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s;
}

.player-tag.eliminated {
    opacity: 0.35;
    text-decoration: line-through;
    border-color: rgba(211,47,47,0.3);
    background: rgba(211,47,47,0.05);
}

.player-tag.current {
    border-color: var(--gold);
    color: var(--gold-light);
    background: var(--gold-glow);
    box-shadow: 0 0 15px var(--gold-dim);
}

/* ===================== PLAYING PHASE — SPLIT LAYOUT ===================== */

.playing-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: start;
    min-height: 60vh;
}

/* Chain (left column) */
.chain-panel {
    background: linear-gradient(180deg, rgba(13,11,46,0.95) 0%, rgba(6,4,26,0.98) 100%);
    border: 2px solid var(--gold-dim);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: sticky;
    top: 80px;
}

.chain-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.chain-bar {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chain-step {
    padding: 0.55rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    color: rgba(212,168,39,0.25);
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.chain-step.chain-active {
    color: #1a1145;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 0 25px rgba(212,168,39,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: var(--gold-light);
    transform: scale(1.05);
}

.chain-step.chain-passed {
    color: var(--gold);
    background: rgba(212,168,39,0.08);
}

.chain-bank-total {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gold-dim);
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.chain-bank-amount {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 0 0 20px var(--gold-dim);
    margin-top: 0.3rem;
}

/* BANQUE button inside chain panel */
.btn-bank {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 50%, var(--gold-light) 100%);
    color: #1a1145;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 20px var(--gold-dim);
    animation: bankPulse 2s ease-in-out infinite;
}

.btn-bank:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(212,168,39,0.6);
}

@keyframes bankPulse {
    0%, 100% { box-shadow: 0 4px 20px var(--gold-dim); }
    50% { box-shadow: 0 4px 30px rgba(212,168,39,0.5); }
}

/* Center area */
.playing-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
}

.round-info {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 0 0 15px var(--gold-glow);
}

.round-timer {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(212, 168, 39, 0.3);
    margin: 0.5rem 0 1rem;
    letter-spacing: 0.1em;
    transition: color 0.3s, text-shadow 0.3s;
}

.round-timer.timer-warning {
    color: #f0a030;
    text-shadow: 0 0 20px rgba(240, 160, 48, 0.6), 0 0 40px rgba(240, 160, 48, 0.3);
}

.round-timer.timer-danger {
    color: #ff3333;
    text-shadow: 0 0 20px rgba(255, 50, 50, 0.8), 0 0 40px rgba(255, 50, 50, 0.4);
    animation: timer-pulse 0.5s ease-in-out infinite alternate;
}

@keyframes timer-pulse {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0.7; transform: scale(1.05); }
}

.btn-start-timer {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    margin: 0.5rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 0 20px var(--gold-glow);
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-start-timer:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(212,168,39,0.3);
}

.question-counter {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.current-player {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 2.5rem;
}

.current-player strong {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    display: block;
    margin-top: 0.3rem;
    color: var(--gold-light);
    text-shadow: 0 0 25px var(--gold-dim);
}

/* Answer buttons */
.answer-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.answer-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.btn-correct {
    padding: 2.2rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--success) 0%, #2e7d32 100%);
    color: #fff;
    border: 3px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px var(--success-glow);
}

.btn-correct:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(67,160,71,0.4);
    border-color: rgba(255,255,255,0.2);
}

.btn-wrong {
    padding: 2.2rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--danger) 0%, #b71c1c 100%);
    color: #fff;
    border: 3px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px var(--danger-glow);
}

.btn-wrong:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(211,47,47,0.4);
    border-color: rgba(255,255,255,0.2);
}

.end-round-area {
    margin-top: 2.5rem;
}

/* Players strip (bottom of playing) */
.players-strip {
    margin-top: 2.5rem;
    text-align: center;
}

.players-strip-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

/* ===================== VOTE ===================== */

.vote-container { text-align: center; padding: 2rem 0; }

.vote-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--danger);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px var(--danger-glow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vote-subtitle {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.vote-voter {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.vote-voter strong {
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
}

.vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

.vote-target {
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}

.vote-target:hover {
    border-color: var(--danger);
    background: rgba(211,47,47,0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--danger-glow);
}

.vote-target-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.vote-target-stats { font-size: 0.9rem; color: var(--text-dim); }

.vote-cast-list {
    margin-top: 2rem;
    color: var(--text-dim);
    font-size: 1rem;
}

.vote-remaining {
    margin-top: 0.5rem;
    color: var(--text-dim);
    font-size: 1rem;
}

/* ===================== REVEAL ===================== */

.reveal-container {
    text-align: center;
    padding: 4rem 2rem;
}

.reveal-quote {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 25px var(--gold-dim);
    font-style: italic;
}

.eliminated-name {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--danger);
    margin: 2rem 0;
    text-shadow: 0 0 50px rgba(211,47,47,0.4);
    animation: revealFlash 0.6s ease;
}

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

.vote-results-summary {
    margin-top: 1.5rem;
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* ===================== WINNER ===================== */

.winner-container { text-align: center; padding: 4rem 2rem; }

.winner-crown {
    font-size: 7rem;
    margin-bottom: 1rem;
    animation: crownBounce 1.5s ease infinite;
}

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

.winner-name {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--gold-light);
    text-shadow: 0 0 50px var(--gold-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.winner-subtitle {
    color: var(--text-dim);
    font-size: 1.4rem;
    margin-top: 0.75rem;
}

/* ===================== LEADERBOARD ===================== */

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 1.2rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(212,168,39,0.08);
}

.leaderboard-table th {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leaderboard-table tr:hover td {
    background: rgba(212,168,39,0.04);
}

.rank-1 { color: #ffd700; font-weight: 700; font-size: 1.3rem; }
.rank-2 { color: #c0c0c0; font-weight: 700; }
.rank-3 { color: #cd7f32; font-weight: 700; }

/* ===================== LOBBY ===================== */

.lobby-container {
    text-align: center;
    padding: 2rem 0;
}

.lobby-players {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.lobby-player-card {
    padding: 1rem 2rem;
    background: rgba(92,45,145,0.15);
    border: 2px solid rgba(92,45,145,0.35);
    border-radius: 14px;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--text-bright);
    transition: all 0.3s;
}

.lobby-player-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px var(--gold-glow);
}

/* ===================== TOAST ===================== */

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 999;
    animation: slideIn 0.3s ease;
    max-width: 420px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.toast-success { background: linear-gradient(135deg, var(--success) 0%, #2e7d32 100%); }
.toast-error { background: linear-gradient(135deg, var(--danger) 0%, #b71c1c 100%); }
.toast-info { background: linear-gradient(135deg, var(--purple) 0%, #3a1870 100%); }

@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===================== SPINNER ===================== */

.waiting-message {
    text-align: center;
    padding: 4rem;
    color: var(--text-dim);
    font-size: 1.2rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
    .playing-layout {
        grid-template-columns: 1fr;
    }
    .chain-panel {
        position: static;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    .chain-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .chain-step { padding: 0.4rem 0.6rem; font-size: 0.9rem; }
    .container { padding: 1rem; }
    .page-title { font-size: 2rem; }
    .current-player strong { font-size: 1.8rem; }
    .answer-buttons { gap: 1rem; }
    .btn-correct, .btn-wrong { padding: 1.2rem 1rem; font-size: 1.1rem; }
    .playing-center { padding: 0; }
    .round-timer { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .answer-buttons { grid-template-columns: 1fr; }
    .vote-grid { grid-template-columns: 1fr; }
    .nav-brand { font-size: 1.1rem; }
    .finale-scoreboard { flex-direction: column; gap: 1.5rem; }
    .finale-vs { font-size: 2rem; }
    .finale-player-score { font-size: 4rem; }
    .finale-player-name { font-size: 1.6rem; }
    .finale-badge { font-size: 2rem; }
}

/* ===================== FINALE ===================== */

.finale-container {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 75vh;
    justify-content: center;
}

.finale-header {
    margin-bottom: 3.5rem;
}

.finale-badge {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    padding: 0.7rem 3rem;
    border: 3px solid var(--gold);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(212,168,39,0.12) 0%, rgba(212,168,39,0.03) 100%);
    text-shadow: 0 0 30px var(--gold-dim);
    box-shadow: 0 0 40px rgba(212,168,39,0.15);
    animation: finalePulse 2.5s ease-in-out infinite;
}

@keyframes finalePulse {
    0%, 100% { box-shadow: 0 0 40px rgba(212,168,39,0.15); }
    50% { box-shadow: 0 0 60px rgba(212,168,39,0.35); }
}

.finale-subtitle {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-top: 1.2rem;
    font-style: italic;
}

.finale-scoreboard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3.5rem;
    width: 100%;
    max-width: 900px;
}

.finale-player {
    flex: 1;
    max-width: 380px;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 3px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s;
}

.finale-player.finale-active {
    border-color: var(--gold);
    box-shadow: 0 0 50px var(--gold-dim);
    background: rgba(212,168,39,0.06);
}

.finale-player-name {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    color: var(--text-bright);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.finale-player-score {
    font-family: 'Cinzel', serif;
    font-size: 7rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 0 0 40px var(--gold-dim);
    line-height: 1;
    margin-bottom: 1.2rem;
}

.finale-dots {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.finale-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid var(--gold-dim);
    background: transparent;
    transition: all 0.3s;
}

.finale-dot.filled {
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 15px var(--gold-dim);
}

.finale-vs {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--purple);
    text-shadow: 0 0 25px var(--purple-glow);
    flex-shrink: 0;
}

.finale-turn {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 2.5rem;
}

.finale-turn strong {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: 2.5rem;
    display: block;
    margin-top: 0.3rem;
}
