/* ── Reset & base ─────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Vote entry overlay (II-style) ─────────────────────────── */
.vot-entry-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 92, 255, 0.12), transparent 60%),
        #0a0b10;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}
.vot-entry-overlay.hidden { display: none; }

.vot-entry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 20px;
    border-bottom: 1px solid #222;
    flex-shrink: 0;
    background: rgba(10, 11, 16, 0.98);
}
.vot-entry-header-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: #fff;
    flex-shrink: 0;
    text-transform: uppercase;
}
.vot-entry-header-spacer { flex: 1; }
.vot-entry-header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.vot-entry-nav-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.15s;
    color: inherit;
    text-transform: uppercase;
}
.vot-entry-nav-btn:hover { transform: scale(1.05); }
.vot-entry-nav-btn--back {
    background: #222;
    color: #aaa;
    border: 1px solid #444;
}
.vot-entry-nav-btn--back:hover { color: #fff; border-color: #888; }
.vot-entry-nav-btn--skip {
    background: linear-gradient(135deg, #00c8ff, #0066cc);
    color: #fff;
    border: none;
    box-shadow: 0 0 12px rgba(0, 180, 255, 0.45);
}
.vot-entry-nav-btn--skip:hover {
    transform: scale(1.05);
    box-shadow: 0 0 22px rgba(0, 180, 255, 0.7);
}
.vot-entry-nav-btn--instr {
    background: #1a1d28;
    color: #8b92a8;
    border: 1px solid rgba(255,255,255,0.08);
}
.vot-entry-nav-btn--instr:hover { color: #fff; }
.vot-entry-nav-btn--menu {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #111;
}

.vot-entry-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 24px 12px;
    min-height: 0;
    overflow: auto;
}
.vot-entry-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}
.vot-entry-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(8px, 1.5vw, 16px);
    max-width: 100%;
    width: 100%;
    padding: 0 12px;
    overflow-x: auto;
}
.vot-entry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    min-width: 72px;
    max-width: 140px;
    text-align: center;
}
.vot-entry-card-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #333;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.vot-entry-card-photo-wrap img {
    position: relative;
    z-index: 1;
    width: 78%;
    height: 78%;
    object-fit: contain;
    object-position: center center;
    border: none;
    border-radius: 2px;
    display: block;
    background: transparent;
}
.vot-entry-grid.pulsing .vot-entry-card-photo-wrap {
    animation: vot-entry-pulse 2.2s ease-in-out infinite;
}
@keyframes vot-entry-pulse {
    0%, 100% { border-color: #333; box-shadow: 0 0 0 rgba(255, 77, 109, 0); }
    50% { border-color: #ff4d6d; box-shadow: 0 0 18px rgba(255, 77, 109, 0.45); }
}
.vot-entry-card span {
    font-family: 'Mouse Memoirs', 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    letter-spacing: 0.04em;
    margin-top: 6px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vot-entry-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px 20px;
    border-top: 1px solid #222;
    flex-shrink: 0;
    background: rgba(10, 11, 16, 0.98);
}
.vot-entry-proceed {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(135deg, #00c8ff, #0066cc);
    color: #fff;
    box-shadow: 0 0 18px rgba(0, 180, 255, 0.5);
    transition: transform 0.15s, box-shadow 0.15s;
}
.vot-entry-proceed:hover {
    transform: scale(1.05);
    box-shadow: 0 0 28px rgba(0, 180, 255, 0.7);
}
.vot-instr-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.vot-instr-modal[hidden] { display: none !important; }
.vot-instr-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.78);
}
.vot-instr-dialog {
    position: relative;
    max-width: 480px;
    width: 100%;
    padding: 1.5rem 1.6rem;
    border-radius: 14px;
    background: #12141c;
    border: 2px solid rgba(0, 245, 255, 0.35);
    box-shadow: 0 0 28px rgba(0, 245, 255, 0.18);
    text-align: center;
}
.vot-instr-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}
.vot-instr-body {
    text-align: left;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #c5cad6;
    margin-bottom: 1.2rem;
}
.vot-instr-body p { margin: 0 0 0.7rem; }
.vot-instr-close { width: 100%; max-width: 220px; }
:root {
    --red:   #ff3333;
    --red2:  #cc0000;
    --gold:  #FFD700;
    --dark:  #0d0d0d;
}
body {
    font-family: 'Oswald', sans-serif;
    background: var(--dark);
    color: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px 14px 10px;
    font-size: 17px;
    box-sizing: border-box;
}

/* â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}
.vot-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: #fff;
    flex-shrink: 0;
}
.vot-participants {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-width: 0;
}
.vot-participants::-webkit-scrollbar { display: none; }
.vot-participants img {
    width: 53px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #333;
    flex-shrink: 0;
}
.vot-participants img.p-eliminated {
    border-color: #880000;
    filter: grayscale(80%) brightness(0.45);
    opacity: 0.5;
}
.vot-participants img.p-nominated { border-color: #fff; }
.vot-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.vot-nav-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.15s, box-shadow 0.15s;
}
.vot-nav-back  { background: #222; color: #aaa; border: 1px solid #444; }
.vot-nav-back:hover { color: #fff; border-color: #888; }
.vot-nav-instr {
    background: #1a1d28;
    color: #8b92a8;
    border: 1px solid rgba(255,255,255,0.08);
}
.vot-nav-instr:hover { color: #fff; transform: scale(1.05); }
.vot-nav-menu  { background: linear-gradient(135deg, #FFD700, #FFA500); color: #111; box-shadow: 0 0 12px rgba(255,180,0,0.4); }
.vot-nav-menu:hover { transform: scale(1.05); box-shadow: 0 0 22px rgba(255,180,0,0.7); }
.vot-nav-status {
    background: linear-gradient(135deg, #ff4d6d, #c9184a);
    color: #fff;
    box-shadow: 0 0 12px rgba(255, 77, 109, 0.45);
}
.vot-nav-status:hover { transform: scale(1.05); box-shadow: 0 0 22px rgba(255, 77, 109, 0.7); }
.vot-nav-shuffle { background: linear-gradient(135deg, #00c8ff, #0066cc); color: #fff; box-shadow: 0 0 12px rgba(0,180,255,0.4); }
.vot-nav-shuffle:hover { transform: scale(1.05); box-shadow: 0 0 22px rgba(0,180,255,0.7); }

/* â”€â”€ Main 2-column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    flex: 1;
    min-height: 0;
    width: 100%;
    overflow: hidden;
}
@media (max-width: 900px) { .vot-main { grid-template-columns: 1fr; } }

/* â”€â”€ Panels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-left-panel,
.vot-right-panel {
    background: rgba(0,0,0,0.4);
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}
.vot-right-panel {
    padding: 8px;
}
.vot-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
}
.vot-panel-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #fff;
}
.vot-actions { display: flex; gap: 8px; }

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.vot-btn:disabled { opacity: 0.35; cursor: default; transform: none !important; }
.vot-btn-add {
    background: linear-gradient(135deg, var(--red2), #990000);
    color: #fff;
    box-shadow: 0 0 12px rgba(200,0,0,0.4);
}
.vot-btn-add:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 0 22px rgba(255,50,50,0.6); }
.vot-btn-clear {
    background: #2a2a2a;
    color: #888;
    border: 1px solid #444;
}
.vot-btn-clear:not(:disabled):hover { background: #333; color: #fff; border-color: #666; }

/* â”€â”€ Voter list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-voter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}
.vot-voter-list::-webkit-scrollbar { width: 5px; }
.vot-voter-list::-webkit-scrollbar-track { background: transparent; }
.vot-voter-list::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

.vot-empty {
    color: #555;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-align: center;
    padding: 20px 0;
}

.vot-voter-card {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.2s;
    white-space: nowrap;
    overflow: hidden;
}
.vot-voter-card:hover { border-color: #444; }
.vot-voter-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.85rem;
    color: #fff;
    min-width: 60px;
}
.vot-voter-sep {
    color: #444;
    font-size: 1rem;
}
.vot-voter-picks {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    overflow: hidden;
}
.vot-pick {
    font-size: 0.88rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.vot-pick-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.55rem;
    color: #ccc;
}
.vot-pick-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    padding: 1px 8px;
    border-radius: 4px;
    text-align: center;
}
.vot-pick-1 { background: #2a1a1a; color: #ff8888; border: 1px solid #441111; }
.vot-pick-2 { background: #1a1a2a; color: #8888ff; border: 1px solid #111144; }
.vot-pick-3 { background: #1a2a1a; color: #88ff88; border: 1px solid #114411; }
.vot-voter-remove {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    background: #1a0000;
    color: #ff6666;
    border: 1px solid #440000;
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}
.vot-voter-remove:hover { background: #330000; color: #ff4444; border-color: #660000; }

/* â”€â”€ Leader card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-leader {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    min-height: 60px;
}
.vot-leader-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.vot-leader-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.vot-leader-empty {
    color: #444;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-align: center;
    padding: 30px 0;
    width: 100%;
}
.vot-leader-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    letter-spacing: 0.12em;
    color: #fff;
    text-align: center;
    margin-bottom: 6px;
    text-shadow:
        0 0 8px #fff,
        0 0 18px #fff,
        0 0 38px rgba(255,255,255,0.6),
        0 0 70px rgba(255,255,255,0.3);
}
.vot-leader-img-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
}
.vot-leader-img {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid rgba(255,255,255,0.25);
    box-shadow: 0 0 30px rgba(255,255,255,0.15);
    display: block;
}
.vot-leader-pts {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 20vw, 14rem);
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.55);
    text-shadow:
        0 0 20px rgba(255,255,255,0.6),
        0 0 50px rgba(255,255,255,0.3);
    pointer-events: none;
    user-select: none;
}
/* Tie variant â€” smaller to fit 3 side by side */
.vot-leader-name.tie-size {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
}
.vot-leader-img.tie-size {
    width: 110px;
    height: 148px;
}
.vot-leader-pts.tie-size {
    font-size: clamp(5rem, 12vw, 9rem);
}

/* Leader (hidden - ranking is the 4x3 photo grid) */
.vot-leader {
    display: none !important;
}

/* Rank grid (4 × 3 photos, sorted most → least votes) */
.vot-rank-list,
.vot-rank-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    flex: 1;
    min-height: 0;
    height: 100%;
    align-content: stretch;
    overflow: hidden;
}
/* Final Four exclusive: 2×2 with the 4 remaining */
.vot-rank-grid.vot-rank-grid--final-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 4px;
}
body.is-final-four-vote .vot-right-panel {
    border-color: rgba(255, 77, 109, 0.45);
    box-shadow: inset 0 0 24px rgba(255, 77, 109, 0.08);
}
body.is-final-four-vote .vot-rank-card--final-four {
    border-color: rgba(255, 77, 109, 0.55);
}
body.is-final-four-vote .vot-rank-card--final-four.is-leader {
    border-color: #ff4d6d;
    box-shadow: 0 0 18px rgba(255, 77, 109, 0.45);
}
body.is-final-four-vote .vot-title {
    color: #ff6b8a;
}
body.is-final-four-vote .vot-rank-card--final-four .vot-rank-card-pts {
    top: auto;
    bottom: 18%;
    transform: none;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    color: rgba(255, 255, 255, 0.72);
}
body.is-final-four-vote .vot-rank-card--final-four img {
    object-position: center 12%;
}
.vot-rank-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background: #111;
    border: 2px solid #333;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}
.vot-rank-card.is-leader {
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.22);
}
.vot-rank-card.is-nominated {
    border-color: #fff;
}
.vot-rank-card.is-eliminated {
    border-color: #880000;
}
.vot-rank-card img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    border: none;
    border-radius: 0;
    background: #1a1a1a;
}
.vot-rank-card img.p-eliminated {
    filter: grayscale(80%) brightness(0.45);
    opacity: 0.55;
}
.vot-rank-card-pts {
    position: absolute;
    left: 0;
    right: 0;
    top: 42%;
    transform: translateY(-50%);
    z-index: 2;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.35),
        0 0 28px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    user-select: none;
}
.vot-rank-card.is-leader .vot-rank-card-pts {
    color: rgba(255, 255, 255, 0.72);
    text-shadow:
        0 0 16px rgba(255, 255, 255, 0.55),
        0 0 32px rgba(0, 0, 0, 0.5);
}
.vot-rank-card.is-eliminated .vot-rank-card-pts {
    opacity: 0.4;
}
.vot-rank-card-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8%;
    z-index: 3;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.35rem);
    letter-spacing: 0.08em;
    color: #fff;
    line-height: 1.1;
    text-align: center;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.75);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 4px;
    box-sizing: border-box;
    pointer-events: none;
}
.vot-rank-card.is-eliminated .vot-rank-card-name {
    color: #999;
}

/* â”€â”€ Tie-break button (below rank list) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-tie-break-wrap {
    flex-shrink: 0;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #2a2a2a;
    display: flex;
    justify-content: center;
}
.vot-btn-tiebreak {
    background: linear-gradient(135deg, #f59e0b, #b45309);
    color: #111;
    font-size: 1.1rem;
    padding: 10px 20px;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}
.vot-btn-tiebreak:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

/* â”€â”€ Main page Finish (below both panels) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-main-finish-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 28px;
    padding: 16px 0;
}
.vot-main-finish-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    padding: 14px 36px;
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.4);
}
.vot-main-finish-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.5);
}

/* â”€â”€ Finish confirm overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-finish-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5100;
}
.vot-finish-confirm-overlay.active { display: flex; }
.vot-finish-confirm-modal {
    position: relative;
    background: #111;
    border: 3px solid #22c55e;
    border-radius: 14px;
    padding: 28px 32px 32px;
    max-width: 420px;
    width: 95%;
    text-align: center;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.35);
}
.vot-finish-confirm-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}
.vot-finish-confirm-close:hover { color: #fff; }
.vot-finish-confirm-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    color: #22c55e;
    margin-bottom: 16px;
}
.vot-finish-confirm-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #22c55e;
    margin: 0 auto 16px;
    display: block;
    background: #1a1a1a;
}
.vot-finish-confirm-msg {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.3;
}
.vot-finish-confirm-msg span {
    color: #22c55e;
}
.vot-finish-confirm-note {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #9ca3af;
    margin: -8px 0 24px;
    line-height: 1.45;
}
.vot-finish-confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.vot-finish-accept {
    background: #22c55e !important;
    color: #04120a !important;
    border: none !important;
    font-weight: 800;
    min-width: 140px;
    padding: 12px 22px;
}
.vot-finish-accept:hover {
    filter: brightness(1.08);
}
.vot-finish-keep {
    background: #333 !important;
    color: #fff !important;
    border: 1px solid #555 !important;
    min-width: 140px;
    padding: 12px 22px;
}
.vot-finish-keep:hover {
    background: #444 !important;
}

/* â”€â”€ Tie-break overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-tiebreak-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}
.vot-tiebreak-overlay.active { display: flex; }
.vot-tiebreak-modal {
    background: #111;
    border: 3px solid #f59e0b;
    border-radius: 14px;
    padding: 24px 28px 28px;
    max-width: 480px;
    width: 95%;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}
.vot-tiebreak-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: #f59e0b;
    margin-bottom: 20px;
    text-align: center;
}
.vot-tiebreak-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.vot-tiebreak-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
}
.vot-tiebreak-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    flex: 1;
}
.vot-tiebreak-pts {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #f59e0b;
    min-width: 36px;
    text-align: center;
}
.vot-tiebreak-btns {
    display: flex;
    gap: 6px;
}
.vot-tiebreak-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.1s, background 0.15s;
}
.vot-tiebreak-btn:hover { transform: scale(1.08); }
.vot-tiebreak-btn.minus {
    background: #2a1a1a;
    color: #ff8888;
    border: 2px solid #551111;
}
.vot-tiebreak-btn.plus {
    background: #1a2a1a;
    color: #88ff88;
    border: 2px solid #115511;
}
.vot-tiebreak-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.vot-tiebreak-done {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    padding: 12px 28px;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    color: #111;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
.vot-tiebreak-done:hover {
    transform: scale(1.05);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.5);
}
.vot-tiebreak-close {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    padding: 12px 20px;
    background: #2a2a2a;
    color: #ccc;
    border: 2px solid #444;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.vot-tiebreak-close:hover {
    background: #333;
    color: #fff;
}

/* â”€â”€ Wizard overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vot-wizard-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
}
.vot-wizard-overlay.active { display: flex; }
.vot-wizard-modal {
    background: #111;
    border: 3px solid var(--red2);
    border-radius: 14px;
    padding: 28px 24px 24px;
    max-width: 780px;
    width: 95%;
    box-shadow: 0 0 50px rgba(200,0,0,0.35);
    position: relative;
    max-height: 98vh;
    min-height: 85vh;
    overflow-y: auto;
}
.vot-wizard-finish-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.vot-wizard-finish-wrap .vot-wiz-btn {
    min-width: 180px;
}
.vot-wizard-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: #2a0000;
    color: #ff6666;
    border: 2px solid #440000;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
    line-height: 1;
}
.vot-wizard-close:hover { background: #440000; color: #ff4444; }

.vot-wizard-step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    color: #fff;
    text-align: center;
    margin-bottom: 18px;
}
.vot-wizard-step-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 3.3rem;
    color: var(--red);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

/* Wizard name input */
.vot-wizard-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.2s;
}
.vot-wizard-input:focus { border-color: var(--red2); }

/* Wizard candidate grid */
.vot-wizard-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.vot-wizard-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border-radius: 9px;
    padding: 8px 5px;
    border: 2px solid transparent;
    transition: border-color 0.2s, background 0.2s;
    background: #1a1a1a;
}
.vot-wizard-card:hover { background: #222; border-color: #444; }
.vot-wizard-card.selected { border-color: var(--red); background: rgba(255,50,50,0.1); }
.vot-wizard-card.wiz-dimmed {
    opacity: 0.35;
    filter: grayscale(80%);
}
.vot-wizard-card img {
    width: 100%;
    aspect-ratio: 80/110;
    object-fit: cover;
    border-radius: 7px;
    border: 2px solid #333;
}
.vot-wizard-card.selected img { border-color: var(--red); }
.vot-wizard-card .wiz-name {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    color: #fff;
    margin-top: 5px;
    text-align: center;
}

/* Wizard step indicator */
.vot-wizard-steps {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
}
.vot-step-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #444;
    transition: background 0.2s, border-color 0.2s;
}
.vot-step-dot.active { background: var(--red); border-color: var(--red); }
.vot-step-dot.done   { background: #555; border-color: #666; }

/* Wizard actions (legacy class, buttons now in .vot-wizard-actions-bar) */
.vot-wizard-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 4px;
}
.vot-wiz-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    padding: 10px 22px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
}
.vot-wiz-btn:disabled { opacity: 0.35; cursor: default; }
.vot-wiz-btn.primary {
    background: linear-gradient(135deg, var(--red2), #990000);
    color: #fff;
    box-shadow: 0 0 12px rgba(200,0,0,0.35);
}
.vot-wiz-btn.primary:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 0 22px rgba(255,50,50,0.5); }
.vot-wiz-btn.secondary {
    background: #222;
    color: #888;
    border: 1px solid #444;
}
.vot-wiz-btn.secondary:hover { background: #2a2a2a; color: #ccc; }

/* -- Final Four overlays ------------------------------------ */
.vot-ff-overlay {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 92, 255, 0.12), transparent 60%),
        #0a0b10;
    overflow: auto;
}
.vot-ff-overlay[hidden] { display: none !important; }
.vot-ff-card {
    max-width: 920px;
    width: 100%;
    padding: 28px 24px 32px;
    border-radius: 16px;
    background: rgba(18, 20, 28, 0.96);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.vot-ff-card--warn { border-color: rgba(255, 180, 0, 0.35); }
.vot-ff-card--final {
    border-color: rgba(255, 77, 109, 0.35);
    box-shadow: 0 0 60px rgba(255, 77, 109, 0.15), 0 20px 50px rgba(0,0,0,0.45);
}
.vot-ff-kicker {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 8vw, 4.5rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.vot-ff-kicker--glow {
    text-shadow: 0 0 30px rgba(255, 77, 109, 0.55), 0 0 60px rgba(255, 77, 109, 0.35);
    animation: vot-ff-kicker-glow 2.5s ease-in-out infinite;
}
@keyframes vot-ff-kicker-glow {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 77, 109, 0.55), 0 0 60px rgba(255, 77, 109, 0.35); }
    50% { text-shadow: 0 0 45px rgba(255, 77, 109, 0.75), 0 0 80px rgba(255, 77, 109, 0.5); }
}
.vot-ff-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.vot-ff-text {
    color: #a8aebc;
    font-size: 1.05rem;
    margin-bottom: 12px;
    line-height: 1.45;
}
.vot-ff-checklist {
    text-align: left;
    max-width: 420px;
    margin: 0.75rem auto 1.2rem;
    padding-left: 1.25rem;
    color: #c5cad6;
}
.vot-ff-checklist li { margin-bottom: 0.4rem; }
.vot-ff-q {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    letter-spacing: 0.08em;
    margin: 16px 0;
    text-transform: uppercase;
}
.vot-ff-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(10px, 2vw, 18px);
    margin-bottom: 20px;
    padding: 0 8px;
}
.vot-ff-pick {
    flex: 1 1 0;
    min-width: 0;
    max-width: 200px;
    padding: 8px 6px 10px;
    border-radius: 12px;
    border: 3px solid rgba(255,255,255,0.15);
    background: #0d0e14;
    cursor: pointer;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.15s, border-color 0.15s;
}
.vot-ff-pick:not(.is-selected) {
    animation: vot-ff-blink 1.5s ease-in-out infinite;
}
.vot-ff-pick--static {
    cursor: default;
    animation: none !important;
    border-color: #ff4d6d;
    box-shadow: 0 0 18px rgba(255, 77, 109, 0.45);
}
@keyframes vot-ff-blink {
    0%, 100% { opacity: 1; border-color: rgba(255,255,255,0.18); }
    50% { opacity: 0.6; border-color: rgba(255,255,255,0.45); }
}
.vot-ff-pick img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: contain;
    border-radius: 8px;
    background: #0a0a0a;
    display: block;
}
.vot-ff-pick span {
    margin-top: 6px;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.vot-ff-pick.is-selected {
    border-color: #ff4d6d;
    box-shadow: 0 0 24px rgba(255, 77, 109, 0.55);
    animation: none;
    transform: scale(1.04);
}
.vot-ff-evict {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 12px auto 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff4d6d, #c9184a);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(255, 77, 109, 0.45);
}
.vot-ff-evict[hidden] { display: none !important; }
.vot-ff-evict:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(255, 77, 109, 0.55); }
.vot-ff-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.vot-ff-confirm-hero {
    display: flex;
    justify-content: center;
    margin: 16px 0;
}
.vot-ff-confirm-hero img {
    width: min(220px, 50vw);
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #ff4d6d;
}
.vot-ff-evi-overlay {
    position: fixed;
    inset: 0;
    z-index: 10040;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    opacity: 0;
    transition: opacity 0.35s;
}
.vot-ff-evi-overlay.is-visible { opacity: 1; }
.vot-ff-evi-card {
    text-align: center;
    max-width: 360px;
}
.vot-ff-evi-card video,
.vot-ff-evi-card img {
    width: min(280px, 70vw);
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0 auto 12px;
}
.vot-ff-evi-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
}
.vot-ff-evi-diag {
    position: fixed;
    top: 18%;
    left: 50%;
    transform: translateX(-50%) rotate(-12deg);
    z-index: 10050;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 12vw, 5rem);
    letter-spacing: 0.16em;
    color: #ff2244;
    text-shadow: 0 0 20px rgba(255, 30, 60, 0.8);
    pointer-events: none;
}
.vot-ff-evi-actions { margin-top: 20px; }
.vot-ff-evi-next {
    opacity: 0;
    transition: opacity 0.4s;
}
.vot-ff-evi-next.is-visible { opacity: 1; }
