/* ===== VICEPRIMITÍV – štýly hry ===== */
.hra-obal {
    position: fixed;
    inset: 0;
    background: #111;
    display: flex;
    justify-content: center;
    font-family: 'Segoe UI', system-ui, sans-serif;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    overflow: hidden;
}

.hra-plocha {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: #000;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

#platno {
    display: block;
    width: 100%;
    height: 100%;
}

.skryte { display: none !important; }

/* ---- HUD ---- */
#hud {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: env(safe-area-inset-top, 8px) 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
    color: #fff;
    text-shadow: 0 1px 3px #000;
    font-weight: bold;
}

.hud-nadpis {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffff66;
    text-shadow: 3px 3px 0 #c0392b, 0 0 12px #000;
    line-height: 1.1;
}

.cas-box {
    text-align: center;
    font-size: 26px;
    font-variant-numeric: tabular-nums;
    background: rgba(0,0,0,0.55);
    border-radius: 12px;
    padding: 2px 14px;
    align-self: center;
}

.malta-banner {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    background: rgba(170,0,0,0.85);
    border: 2px solid #ff5555;
    border-radius: 10px;
    padding: 4px 8px;
    line-height: 1.2;
    animation: blik 0.6s infinite alternate;
}
.malta-banner small { font-size: 13px; font-weight: normal; }

.odoslanie {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 300px;
}
.odoslanie input {
    font-size: 18px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 2px solid #ffff66;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
}
.hlavne-tlacidlo.mensie {
    font-size: 17px;
    padding: 10px 20px;
    background: linear-gradient(#3498db, #2980b9);
    box-shadow: 0 6px 0 #1f618d, 0 8px 20px rgba(0,0,0,0.5);
}
.hlavne-tlacidlo:disabled { opacity: 0.6; }
.kod-box {
    background: rgba(0,0,0,0.6);
    border: 2px dashed #66ffcc;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 16px;
}
.kod-box b { font-size: 28px; color: #66ffcc; letter-spacing: 3px; font-family: monospace; }

.vysledky-obal { padding: 20px; font-family: system-ui, sans-serif; color: #eee; background: #111; min-height: 100vh; }
.vysledky-obal table { border-collapse: collapse; width: 100%; max-width: 900px; }
.vysledky-obal th, .vysledky-obal td { padding: 6px 10px; border-bottom: 1px solid #333; text-align: left; }
.vysledky-obal th { color: #ffff66; }

.vysledny-cas {
    font-size: 48px;
    font-weight: 900;
    color: #ffff66;
    font-variant-numeric: tabular-nums;
    text-shadow: 3px 3px 0 #c0392b, 0 0 20px #000;
    background: rgba(0,0,0,0.5);
    border: 3px solid #ffff66;
    border-radius: 16px;
    padding: 6px 24px;
}

.hud-riadok {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.podpisy-box {
    background: rgba(0,0,0,0.55);
    border: 2px solid #ffff66;
    border-radius: 10px;
    padding: 3px 10px;
    font-size: 17px;
    color: #ffff66;
}

.zona {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 8px;
    background: rgba(0,120,0,0.6);
}
.zona.malta {
    background: rgba(160,0,0,0.75);
    animation: blik 0.8s infinite alternate;
}
@keyframes blik { from { opacity: 1; } to { opacity: 0.55; } }

.promile-obal {
    background: rgba(0,0,0,0.6);
    border-radius: 8px;
    height: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
}
.promile-bar {
    height: 100%;
    transition: width 0.15s linear, background 0.3s;
}
.promile-bar.triezvy { background: #777; }
.promile-bar.ok { background: linear-gradient(90deg, #f1c40f, #e67e22); }
.promile-bar.vysoky { background: linear-gradient(90deg, #e67e22, #e74c3c); }
.promile-bar.kriticky { background: #e74c3c; animation: blik 0.3s infinite alternate; }
#promile-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.promile-popis {
    font-size: 11px;
    opacity: 0.85;
    display: flex;
    justify-content: space-between;
}
#bonusy {
    text-align: center;
    color: #66ffcc;
    font-size: 14px;
    min-height: 18px;
}

/* ---- tlačidlo piť ---- */
.spodok {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 8px 10px calc(env(safe-area-inset-bottom, 8px) + 8px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}
.napoveda {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    text-shadow: 0 1px 2px #000;
    max-width: 45%;
}
#tlacidlo-pi {
    pointer-events: auto;
    background: linear-gradient(#f9d423, #e67e22);
    border: 3px solid #fff;
    border-radius: 50%;
    width: 84px;
    height: 84px;
    font-size: 15px;
    font-weight: 900;
    color: #4a2000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    line-height: 1.1;
    cursor: pointer;
}
#tlacidlo-pi:active { transform: scale(0.93); }
#tlacidlo-pi:disabled { filter: grayscale(1); opacity: 0.5; }

/* ---- menu / koniec ---- */
.prekrytie {
    position: absolute;
    inset: 0;
    background: rgba(10,10,30,0.88);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    gap: 14px;
    overflow-y: auto;
}
.prekrytie h1 {
    font-size: 30px;
    margin: 0;
    color: #ffff66;
    text-shadow: 3px 3px 0 #c0392b, 0 0 20px #000;
    letter-spacing: 1px;
    line-height: 1.1;
}
.prekrytie h2 { margin: 0; font-size: 26px; }
.podtitul { font-size: 15px; opacity: 0.9; margin: 0; }
.legenda {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    text-align: left;
    line-height: 1.55;
    max-width: 360px;
}
.legenda b { color: #ffff66; }
.legenda .malta-text { color: #ff8888; }
.hlavne-tlacidlo {
    background: linear-gradient(#2ecc71, #27ae60);
    border: 3px solid #fff;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    padding: 14px 36px;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 6px 0 #1e8449, 0 8px 20px rgba(0,0,0,0.5);
}
.hlavne-tlacidlo:active { transform: translateY(4px); box-shadow: 0 2px 0 #1e8449; }
.drobne { font-size: 11px; opacity: 0.6; max-width: 340px; }
