:root {
    --navy: #1D2A4F;
    --navy-light: #162344;
    --red: #D9323F;
    --red-dark: #B8232F;
    --gold: #B38F5B;
    --cream: #F5F1E9;
    --cream-dark: #EBE5D8;

    /* ── ZoomIn Satellite Recon tokens ────────────────────────── */
    --zm-navy: #1D2A4F;
    --zm-navy-deep: #111A35;
    --zm-red: #C41E3A;
    --zm-gold: #E8B339;
    --zm-hud-green: #5BE39D;
    --zm-hud-dim: rgba(232, 179, 57, 0.45);
    --zm-scanline: rgba(232, 179, 57, 0.06);
    --zm-surface: rgba(255, 255, 255, 0.04);
    --zm-border-hud: rgba(232, 179, 57, 0.25);
}

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

body {
    font-family: 'Montserrat', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--navy);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* ── HEADER ─────────────────────────────────────── */
.app-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 12px 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 10000;
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.fo-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    border-radius: 8px;
    transition: background 0.2s;
    margin-left: -4px;
    margin-right: 4px;
}

.fo-hamburger:hover { background: rgba(255,255,255,0.12); }

.fo-hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.stadr-main-logo {
    height: 38px;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.logo:hover .stadr-main-logo { transform: scale(1.04); }

.lang-selector {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.lang-globe-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-globe-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 20px;
    color: rgba(255,255,255,0.75);
    padding: 6px 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.15s;
    letter-spacing: 0.3px;
}

.lang-globe-btn:hover {
    background: rgba(255,255,255,0.16);
    color: white;
}

.lang-globe-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.lang-globe-current { line-height: 1; }

.lang-globe-caret {
    width: 8px;
    height: 5px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: transform 0.2s;
}

.lang-globe-wrap.open .lang-globe-caret { transform: rotate(180deg); }

.lang-globe-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    min-width: 140px;
    overflow: hidden;
    z-index: 20000;
}

.lang-globe-wrap.open .lang-globe-menu { display: block; }

.lang-globe-menu .lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    text-align: left;
    transition: background 0.12s;
}

.lang-globe-menu .lang-btn:hover { background: #f3f4f6; }

.lang-globe-menu .lang-btn.active {
    color: var(--navy);
    font-weight: 700;
    background: #f0f4ff;
}

.auth-section {
    flex-shrink: 0;
    margin-left: 12px;
}

.login-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    color: white;
    padding: 7px 16px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.15s;
}

.login-btn:hover { background: rgba(255,255,255,0.18); }

/* ── FO-MENU ─────────────────────────────────────── */
.fo-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: var(--navy);
    z-index: 1000001;
    transition: left 0.25s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.fo-menu.open { left: 0; }

.fo-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000000;
    display: none;
}

.fo-menu-overlay.open { display: block; }

.fo-menu-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fo-menu-brand {
    height: 34px;
    width: auto;
    display: block;
}

.fo-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.15s;
}

.fo-menu-close:hover { background: rgba(255,255,255,0.1); }

.fo-menu-items {
    flex: 1;
    overflow-y: auto;
    padding: 12px 8px;
}

.fo-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s;
    font-size: 14px;
}

.fo-menu-item:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}

.fo-menu-item.active {
    background: rgba(255,255,255,0.12);
    color: white;
    font-weight: 600;
}

.fo-menu-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.fo-menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 8px 0;
}

/* ── PERSISTENT HEADER ──────────────────────────────── */
.zm-persistent-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 8px 20px;
    text-align: center;
    border-bottom: 2px solid var(--gold);
    flex-shrink: 0;
    min-height: 20px;
}

/* ── PAGE CONTAINER ──────────────────────────────── */
.zm-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.zm-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: opacity 0.2s ease;
    opacity: 1;
    pointer-events: auto;
}

.zm-screen.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

#screen-result {
    display: none;
}

#screen-result:not(.hidden) {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* ── FONTS ───────────────────────────────────────── */
.bangers {
    font-family: 'Bangers', cursive;
    font-weight: 400;
}

/* ── START SCREEN ────────────────────────────────── */
#screen-start {
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.zm-start-container {
    text-align: center;
    max-width: 360px;
    width: 100%;
}

.zm-title {
    font-size: 48px;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.zm-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
    font-weight: 500;
}

.zm-pool-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.zm-pool-btn {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid var(--zm-gold);
    border-radius: 2px;
    color: var(--zm-gold);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.15s;
    text-transform: uppercase;
}

.zm-pool-btn:hover {
    opacity: 0.8;
}

.zm-pool-btn.active {
    background: var(--zm-gold);
    color: var(--zm-navy);
    border-color: var(--zm-gold);
}

.zm-best-score {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    min-height: 20px;
}

.zm-total-stats {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

.zm-total-stats span {
    font-weight: 700;
    color: var(--red);
}

.zm-btn-primary {
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.zm-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(29, 42, 79, 0.3);
}

.zm-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── GAME SCREEN ─────────────────────────────────── */
#screen-game {
    overflow-y: auto;
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zm-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.zm-attempt-counter {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.zm-attempt-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.zm-bar {
    width: 8px;
    background: #d1d5db;
    border: 1px solid #9ca3af;
    border-radius: 1px;
}
.zm-bar:nth-child(1) { height: 8px; }
.zm-bar:nth-child(2) { height: 11px; }
.zm-bar:nth-child(3) { height: 14px; }
.zm-bar:nth-child(4) { height: 17px; }
.zm-bar:nth-child(5) { height: 20px; }
.zm-bar:nth-child(6) { height: 23px; }

.zm-bar.active {
    background: var(--navy);
    border-color: var(--navy);
}

.zm-bar.burned {
    background: #ef4444;
    border-color: #dc2626;
}

.zm-attempt-label {
    margin-left: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}

.zm-zoom-hint-label {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
}

/* ── SATELLITE RECON VIEWFINDER ────────────────────────────── */
.zm-viewfinder {
    position: relative;
    border: 1px solid var(--zm-border-hud);
    border-radius: 4px;
    overflow: hidden;
    background: var(--zm-navy-deep);
    width: 100%;
    height: 55vw;
    max-height: 400px;
    flex-shrink: 0;
}

/* Corners en L (or, 3px) */
.zm-corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 3px solid var(--zm-gold);
    z-index: 500;
    pointer-events: none;
}
.zm-corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.zm-corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.zm-corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.zm-corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Bandeaux HUD */
.zm-hud-top, .zm-hud-bottom {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 8px 36px;
    z-index: 500;
    pointer-events: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    color: var(--zm-hud-dim);
    text-shadow: 0 0 6px rgba(0,0,0,0.8);
}
.zm-hud-top { top: 0; }
.zm-hud-bottom { bottom: 0; }

.zm-hud-item {
    white-space: nowrap;
}

/* Crosshair central */
.zm-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 450;
    pointer-events: none;
    width: 0;
    height: 0;
}
.zm-crosshair-h, .zm-crosshair-v {
    position: absolute;
    background: var(--zm-gold);
    opacity: 0.55;
}
.zm-crosshair-h {
    width: 36px;
    height: 1px;
    left: -18px;
    top: 0;
}
.zm-crosshair-v {
    width: 1px;
    height: 36px;
    top: -18px;
    left: 0;
}
.zm-crosshair-ring {
    position: absolute;
    width: 56px;
    height: 56px;
    left: -28px;
    top: -28px;
    border: 1px solid var(--zm-gold);
    border-radius: 50%;
    opacity: 0.35;
}

/* Scanlines subtiles */
.zm-scanlines {
    position: absolute;
    inset: 0;
    z-index: 440;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 3px,
        var(--zm-scanline) 3px,
        var(--zm-scanline) 4px
    );
}

.zm-map {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: none;
    position: relative;
}

/* Recalibrate effect */
.zm-recalibrate {
    position: absolute;
    inset: 0;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 26, 53, 0.55);
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.zm-recalibrate.hidden {
    display: none;
}

.zm-recalibrate-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--zm-gold);
    animation: zm-blink 0.4s steps(2) infinite;
}

@keyframes zm-blink {
    50% { opacity: 0.2; }
}

.zm-map .leaflet-container {
    cursor: default !important;
    font-family: 'Montserrat', sans-serif;
}

.zm-wrong-guesses {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 0;
    margin: 8px 0;
}

.wrong-guess-item {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--zm-red);
    padding: 4px 8px;
    border: 1px solid var(--zm-red);
    border-radius: 3px;
    margin: 4px 0;
    background: transparent;
    text-transform: uppercase;
    animation: zm-stamp 0.25s ease-out;
    display: inline-block;
}

@keyframes zm-stamp {
    0% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.zm-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    overflow: visible;
    position: relative;
    z-index: 10;
}

.zm-guess-input-container {
    position: relative;
    overflow: visible;
    z-index: 100;
}

.zm-guess-input {
    width: 100%;
    padding: 12px 14px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--navy);
    transition: border-color 0.15s;
}

.zm-guess-input:focus {
    outline: none;
    border-color: var(--navy);
}

.zm-guess-input::placeholder {
    color: #9ca3af;
}

/* Autocomplete dropdown */
.zm-autocomplete {
    position: fixed;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    list-style: none;
    z-index: 10000;
    max-height: 240px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: auto;
    max-width: 420px;
    top: auto;
    left: 0;
}

.zm-autocomplete.hidden {
    display: none;
}

.zm-autocomplete li {
    padding: 10px 14px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background 0.12s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.zm-autocomplete li:last-child {
    border-bottom: none;
}

.zm-autocomplete li:hover {
    background: #f9fafb;
}

.zm-autocomplete li.selected {
    background: #f0f4ff;
    color: var(--navy);
}

.autocomplete-team {
    font-size: 12px;
    opacity: 0.6;
    margin-left: auto;
}

/* ── HINTS BOX ──────────────────────────────────────────────── */
.zm-hints-box {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0;
    font-size: 13px;
    font-weight: 500;
}

.zm-hints-box.hidden {
    display: none;
}

.zm-hint-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    border: 2px solid #f59e0b;
    border-radius: 6px;
    padding: 8px 12px;
    color: #78350f;
}

.zm-hint-label {
    font-weight: 700;
    color: #92400e;
}

.zm-hint-value {
    color: #78350f;
    font-weight: 600;
}

#btn-submit-guess {
    width: 100%;
}

/* ── RESULT SCREEN ───────────────────────────────── */
#screen-result {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
    backdrop-filter: blur(2px);
}

.zm-result-container {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.zm-result-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.15s;
    padding: 0;
}

.zm-result-close:hover {
    background: #f3f4f6;
    color: var(--navy);
}

.zm-result-badge {
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.zm-result-badge.won {
    color: var(--zm-hud-green);
    border: 2px solid var(--zm-hud-green);
    padding: 10px 22px;
    display: inline-block;
    align-self: center;
    transform: rotate(-2deg);
    animation: zm-stamp-in 0.45s cubic-bezier(0.2, 1.6, 0.4, 1);
}

.zm-result-badge.lost {
    color: var(--zm-red);
}

@keyframes zm-stamp-in {
    0% { transform: rotate(-2deg) scale(2.2); opacity: 0; }
    100% { transform: rotate(-2deg) scale(1); opacity: 1; }
}

.zm-result-map {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.zm-result-info {
    text-align: center;
}

.zm-result-name {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 4px;
}

.zm-result-team {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2px;
}

.zm-result-location {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.zm-result-year {
    font-size: 12px;
    color: #d1d5db;
}

.zm-result-summary {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.zm-result-score {
    text-align: center;
    font-size: 32px;
    color: var(--red);
}

.zm-result-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zm-btn-secondary {
    padding: 12px 20px;
    background: var(--cream-dark);
    border: none;
    border-radius: 8px;
    color: var(--navy);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    text-transform: uppercase;
}

.zm-btn-secondary:hover {
    background: #ddd6c8;
}

.zm-btn-back {
    text-align: center;
    padding: 12px 20px;
    color: var(--navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.15s;
    background: transparent;
}

.zm-btn-back:hover {
    background: rgba(29, 42, 79, 0.08);
}

/* ── LOGIN CTA BANNER ────────────────────────────── */
.zm-login-cta {
    background: var(--navy);
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    text-align: center;
    margin: 12px 16px 0;
    font-size: 13px;
}

.zm-login-cta.hidden {
    display: none;
}

.zm-login-cta a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* ── TOAST ───────────────────────────────────────── */
.zm-toast {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    z-index: 5000;
    transition: bottom 0.3s ease;
    white-space: nowrap;
}

.zm-toast.show {
    bottom: 20px;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 480px) {
    #screen-result {
        padding: 12px;
    }

    .zm-result-container {
        max-width: 100%;
        padding: 16px 12px;
    }

    .zm-result-name {
        font-size: 20px;
    }

    .zm-result-score {
        font-size: 28px;
    }

    .zm-title {
        font-size: 40px;
    }

    .zm-subtitle {
        font-size: 14px;
    }

    .zm-viewfinder {
        height: 50vw;
        max-height: 300px;
    }

    .zm-pool-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
}

@media (min-width: 1024px) {
    .zm-game-header {
        padding: 12px 0;
    }

    .zm-viewfinder {
        max-height: 500px;
    }

    .zm-input-wrapper {
        flex-direction: row;
        gap: 8px;
        align-items: flex-start;
        max-width: 700px;
        margin: 0 auto;
    }

    .zm-guess-input {
        flex: 1;
        min-width: 420px;
    }

    #btn-submit-guess {
        width: auto;
        flex-shrink: 0;
    }
}

/* ── ACCESSIBILITY ───────────────────────────────── */
/* Reduce motion preferences */
@media (prefers-reduced-motion: reduce) {
    .zm-recalibrate-text,
    .zm-result-badge.won,
    .zm-result-badge.lost,
    .wrong-guess-item {
        animation: none !important;
    }

    .zm-bar,
    .zm-crosshair-h,
    .zm-crosshair-v,
    .zm-crosshair-ring {
        transition: none !important;
    }
}

/* Focus visible on interactive elements */
input:focus-visible,
button:focus-visible,
.zm-pool-btn:focus-visible {
    outline: 2px solid var(--zm-gold);
    outline-offset: 2px;
}

.zm-guess-input:focus {
    outline: 2px solid var(--zm-gold);
    border-color: var(--zm-gold);
}
