/* ============================================================
   BERUGTAM.HU: stílus
   Sötét, neonos bulitéma; reggel (body.morning) világos,
   kíméletes másnapos témára vált.
   ============================================================ */

:root {
  --bg: #12081f;
  --panel: #1d0f33;
  --panel-2: #26143f;
  --ink: #fff7ec;
  --muted: #a898c6;
  --pink: #ff2e88;
  --amber: #ffd166;
  --green: #3ddc97;
  --border: #3a2560;
  --radius: 20px;
}

body.morning {
  --bg: #fff6e9;
  --panel: #ffffff;
  --panel-2: #fdeed7;
  --ink: #2a1a3a;
  --muted: #7a6a92;
  --border: #ecd9bb;
}

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

/* Nincs globális scroll-behavior: smooth! iOS-en gépelés közben a böngésző
   minden leütésnél a kurzorhoz igazítja a nézetet, és simított görgetéssel
   ez látható ugrálássá válik. A sima görgetéseket JS-ből kérjük, célzottan. */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  touch-action: manipulation;
  transition: background 0.4s, color 0.4s;
}

section, header.hero {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 20px;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 12px;
}

.section-lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 28px;
}

.muted { color: var(--muted); }

/* ---------- Gombok ---------- */

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.1s, filter 0.2s;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #ff6a3d);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 46, 136, 0.35);
}
.btn-primary:hover { filter: brightness(1.1); }

.btn-ghost {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--pink); }

.btn-big {
  display: block;
  width: 100%;
  padding: 20px 28px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--pink), #ff6a3d);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255, 46, 136, 0.45);
}

/* ---------- Korhatár-kapu ---------- */

#gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 5, 20, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gate-inner {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  max-width: 420px;
  text-align: center;
}

.gate-emoji { font-size: 3.5rem; margin-bottom: 12px; }
.gate-inner h2 { margin-bottom: 10px; }
.gate-inner p { color: var(--muted); margin-bottom: 24px; }
.gate-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Bannerek ---------- */

#morning-banner, #challenge-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--amber), #ff9f43);
  color: #2a1a3a;
}
#morning-banner a { color: #2a1a3a; font-weight: 900; }

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding-top: 72px;
  padding-bottom: 64px;
}

.logo {
  font-size: clamp(2.6rem, 11vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  transform: rotate(-2deg);
  background: linear-gradient(135deg, var(--pink), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.logo span { -webkit-text-fill-color: var(--muted); font-size: 0.5em; }

.tagline { font-size: 1.25rem; font-weight: 700; }
.tagline-fine { color: var(--muted); font-size: 0.85rem; margin-bottom: 36px; }

.hero-secondary {
  display: inline-block;
  margin-top: 20px;
  color: var(--muted);
  text-decoration: underline;
}

/* ---------- Tesztképernyő ---------- */

.test-progress {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.test-stage {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.test-intro { color: var(--muted); max-width: 400px; }

.test-status { font-weight: 700; font-size: 1.1rem; min-height: 1.6em; }

/* Reakcióteszt */
.rt-arena {
  position: relative;
  width: 100%;
  height: 46vh;
  min-height: 300px;
  background: var(--panel-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.rt-dot {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: radial-gradient(circle at 30% 30%, #ffd166, var(--pink));
  box-shadow: 0 0 30px rgba(255, 46, 136, 0.8);
  animation: dot-life linear forwards;
}

@keyframes dot-life {
  0%   { transform: scale(0.4); opacity: 1; }
  15%  { transform: scale(1); }
  70%  { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(0.15); opacity: 0.2; }
}

/* Egyensúlyteszt: vándorló célkör + golyó */
.bl-arena {
  position: relative;
  width: 100%;
  height: 46vh;
  min-height: 300px;
  background: var(--panel-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.bl-target {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 104px;
  height: 104px;
  border: 4px dashed var(--border);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.4s ease, top 0.4s ease, border-color 0.15s, background 0.15s;
}

.bl-target.in {
  border-color: var(--green);
  border-style: solid;
  background: rgba(61, 220, 151, 0.15);
}

.bl-ball {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, #fff, var(--amber));
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.7);
  will-change: left, top;
}

/* Gépelés közben felülre igazított tartalom (billentyűzet-ugrálás ellen) */
.test-stage.stage-top {
  justify-content: flex-start;
  min-height: 0;
  padding-top: 20px;
}

/* Gépelés alatt a teljes oldal rögzítve: a billentyűzet nem tud min
   görgetni, így ugrálni sincs. A tartalom előtte felgörgetve a tetejére. */
body.typing-lock {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

/* Nyelvtörő */
.tt-target {
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  max-width: 420px;
}

.tt-input {
  width: 100%;
  max-width: 420px;
  font-family: inherit;
  font-size: 1.05rem;
  padding: 14px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--panel-2);
  color: var(--ink);
  resize: none;
}
.tt-input:focus { outline: none; border-color: var(--pink); }

/* ---------- Eredmény ---------- */

#result { text-align: center; }

.gauge {
  width: min(320px, 80%);
  color: var(--ink);
  margin: 8px auto 0;
  display: block;
}

#gauge-needle {
  transform-box: view-box;
  transform-origin: 100px 100px;
  transform: rotate(-90deg);
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.result-score { font-size: 3.2rem; font-weight: 900; line-height: 1.1; }
.result-rank { font-size: 1.5rem; font-weight: 700; color: var(--pink); margin-bottom: 6px; }
.result-line { color: var(--muted); font-style: italic; margin-bottom: 24px; }

.result-breakdown {
  list-style: none;
  text-align: left;
  max-width: 440px;
  margin: 0 auto 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cert-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  max-width: 440px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cert-box input {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--panel-2);
  color: var(--ink);
}
.cert-box input:focus { outline: none; border-color: var(--amber); }

#cert-preview {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.cert-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.result-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.result-package-hint { font-weight: 700; font-size: 1.1rem; }

/* ---------- Mentőcsomagok ---------- */

.package-cards {
  display: grid;
  gap: 18px;
}

@media (min-width: 720px) {
  #packages { max-width: 1000px; }
  .package-cards { grid-template-columns: repeat(3, 1fr); }
}

.package-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.package-emoji { font-size: 2.6rem; }
.package-tagline { color: var(--muted); font-style: italic; min-height: 2.6em; }

.package-card ul {
  list-style: none;
  text-align: left;
  margin: 4px auto 8px;
  color: var(--muted);
}
.package-card li::before { content: "✔ "; color: var(--green); }

.package-price { font-weight: 900; font-size: 1.2rem; }

.package-extra { color: var(--muted); font-size: 0.85rem; }

.package-fine {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 22px;
}

/* ---------- Vezetés ---------- */

.driving-box {
  background: var(--panel);
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* ---------- Lábléc ---------- */

footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer a { color: var(--muted); }

/* ---------- Felső navigáció (aloldalak) ---------- */

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  padding: 18px 20px;
}

.topnav-logo {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
}

.topnav-links { display: flex; gap: 16px; }
.topnav-links a { color: var(--muted); font-size: 0.9rem; }

/* ---------- Party mód ---------- */

.btn-party {
  display: block;
  width: 100%;
  margin-top: 12px;
}

#party-setup, #party-board { text-align: center; }

.party-add {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 18px;
}

.party-add input {
  flex: 1;
  min-width: 0;
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--panel-2);
  color: var(--ink);
}
.party-add input:focus { outline: none; border-color: var(--pink); }

.party-list {
  list-style: none;
  max-width: 440px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.party-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
}

.party-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
}
.party-remove:hover { color: var(--pink); }

#party-start { max-width: 440px; margin: 0 auto 12px; }
.party-back { display: block; margin: 0 auto; }

.party-next-name {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--amber);
}

.party-ranking {
  list-style: none;
  max-width: 480px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: rangsor;
}

.party-ranking li {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: left;
}

.party-ranking li:first-child { border-color: var(--amber); }

.party-medal { font-size: 1.4rem; }
.party-player { font-weight: 900; flex: 1; }
.party-score { font-weight: 700; }

.party-verdict {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* ---------- Kalkulátor ---------- */

.calc-hero { padding-top: 40px; padding-bottom: 8px; }
.calc-hero h1 { margin-bottom: 12px; }

#calculator { padding-top: 16px; }

.calc-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc-field { display: flex; flex-direction: column; gap: 10px; }
.calc-field > label { font-weight: 700; }

.calc-field input, .calc-field select {
  font-family: inherit;
  font-size: 1.05rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--panel-2);
  color: var(--ink);
}
.calc-field input:focus, .calc-field select:focus {
  outline: none;
  border-color: var(--pink);
}

.gender-row { display: flex; gap: 10px; }
.gender-btn.active {
  border-color: var(--pink);
  background: rgba(255, 46, 136, 0.12);
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

.drink-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drink-emoji { font-size: 1.8rem; }
.drink-name { font-weight: 700; font-size: 0.9rem; }
.drink-sub { color: var(--muted); font-size: 0.78rem; }

.drink-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.step-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
}
.step-btn:hover { border-color: var(--pink); }

.drink-count { font-weight: 900; min-width: 1.4em; }

.calc-result {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-number { font-size: 2.6rem; font-weight: 900; }

.calc-noDrive {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--pink);
}

.calc-warn { color: var(--amber); font-weight: 700; }
.calc-fine { color: var(--muted); font-size: 0.85rem; }

.calc-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.method, .faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 14px;
}

.method summary, .faq-item summary {
  font-weight: 700;
  cursor: pointer;
}

.method p, .faq-item p {
  color: var(--muted);
  margin-top: 10px;
}

#faq { padding-top: 8px; }

/* ---------- Recept oldal ---------- */

.recipe { padding-top: 8px; }

.recipe-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  margin-bottom: 16px;
}

.recipe-box h2 { margin-bottom: 10px; font-size: 1.25rem; }
.recipe-box p { color: var(--muted); }
.recipe-box p + p { margin-top: 10px; }

.recipe-ingredients {
  list-style: none;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recipe-ingredients li::before { content: "🧂 "; }

.recipe-steps {
  color: var(--muted);
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recipe-steps li::marker { color: var(--pink); font-weight: 900; }

.recipe-cta {
  background: var(--panel);
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.recipe-cta p { color: var(--muted); }

/* ---------- Jogi oldalak ---------- */

.legal { text-align: left; }
.legal h2 { margin: 22px 0 8px; font-size: 1.15rem; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 20px; margin: 8px 0; }

.legal-todo {
  background: rgba(255, 209, 102, 0.12);
  border: 2px dashed var(--amber);
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.legal-list dt { font-weight: 700; margin-top: 14px; }
.legal-list dd { color: var(--muted); margin-left: 0; }

.legal-note { margin-top: 24px; font-size: 0.9rem; }

/* ---------- Részeg-üzenet széf ---------- */

#vault { text-align: center; }

.vault-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.vault-input {
  width: 100%;
  font-family: inherit;
  font-size: 1.05rem;
  padding: 14px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--panel-2);
  color: var(--ink);
  resize: none;
}
.vault-input:focus { outline: none; border-color: var(--amber); }

.vault-locked { font-size: 2.6rem; }

.vault-note { color: var(--green); font-weight: 700; }

.vault-msg {
  width: 100%;
  background: var(--panel-2);
  border-left: 4px solid var(--amber);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-style: italic;
  text-align: left;
  overflow-wrap: break-word;
}

.vault-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Kocsma mód ---------- */

.k-stage {
  max-width: 640px;
  margin: 0 auto;
  padding: 4px 16px 40px;
}

.k-lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 20px;
}

.k-menu { display: grid; gap: 12px; }

.k-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.1s, border-color 0.2s;
}
.k-tile:hover { border-color: var(--pink); }
.k-tile:active { transform: scale(0.98); }

.k-tile-emoji { font-size: 2.2rem; }
.k-tile-body { display: flex; flex-direction: column; gap: 2px; }
.k-tile-name { font-weight: 900; font-size: 1.15rem; }
.k-tile-desc { color: var(--muted); font-size: 0.88rem; }

.k-topbar { margin-bottom: 12px; }
.k-topbar a { color: var(--muted); text-decoration: none; font-weight: 700; }

.k-screen {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 70vh;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  overflow: hidden;
}

.k-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.85rem;
}

.k-big { font-size: 1.9rem; font-weight: 900; line-height: 1.2; }
.k-text { color: var(--muted); max-width: 420px; }
.k-emoji { font-size: 4rem; line-height: 1; }
.k-count { font-size: 7rem; font-weight: 900; line-height: 1; }

.k-card-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  max-width: 460px;
}

.k-tier-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* Ujj-rulett */
.k-screen.k-fill { padding: 16px; justify-content: flex-start; }

.k-touch {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 55vh;
  background: var(--panel-2);
  border-radius: var(--radius);
  touch-action: none;
  overflow: hidden;
}

.k-finger {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.75);
  transform: translate(-50%, -50%);
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 0.3s;
}
.k-finger.hot { box-shadow: 0 0 40px rgba(255, 255, 255, 0.9); border-color: #fff; }
.k-finger.win {
  box-shadow: 0 0 60px rgba(255, 209, 102, 1);
  border-color: var(--amber);
  animation: win-pulse 0.6s infinite alternate;
}
.k-finger.lose { opacity: 0.15; }

@keyframes win-pulse {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -50%) scale(1.25); }
}

.k-again {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

/* Bomba */
.k-pulse { animation: bomb-pulse 0.7s infinite alternate; }
@keyframes bomb-pulse {
  from { transform: scale(1); }
  to   { transform: scale(1.15); }
}
.k-tilt { transform: rotate(8deg) scale(1.1); }

.k-pass {
  width: 100%;
  min-height: 26vh;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink), #ff6a3d);
  color: #fff;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 900;
  cursor: pointer;
}
.k-pass small { font-weight: 400; font-size: 0.95rem; opacity: 0.85; }
.k-pass:active { filter: brightness(1.2); }

.k-explode { font-size: 6rem; line-height: 1; }
.k-screen.k-boom { border-color: var(--pink); background: #3d0f22; }

/* Alattomos Vekker */
.k-stealth {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}
.k-stealth a { color: var(--muted); font-size: 0.85rem; }

.k-stealth-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  animation: stealth-blink 2.4s infinite;
}
@keyframes stealth-blink {
  0%, 90% { opacity: 0.25; }
  95%     { opacity: 1; }
  100%    { opacity: 0.25; }
}

.k-slap {
  position: absolute;
  inset: 0;
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

body.k-alarm {
  animation: alarm-flash 0.3s infinite alternate;
}
@keyframes alarm-flash {
  from { background: #12081f; }
  to   { background: #7a1030; }
}

/* Vízkör */
.k-vizkor { border-color: #3aa7dc; }

/* Asztalbérlet (paywall) */
.k-chip {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--amber);
  background: rgba(255, 209, 102, 0.1);
  color: var(--ink);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
}
.k-chip-on {
  border-color: var(--green);
  background: rgba(61, 220, 151, 0.12);
  cursor: default;
}

.k-tile { position: relative; }
.k-tile.k-locked { opacity: 0.75; }
.k-lock {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1rem;
}

.k-teaser {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
}

#pass-sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 5, 20, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.pass-inner {
  background: var(--panel);
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  padding: 30px 24px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pass-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--amber);
}
.pass-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
}

.pass-perks {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
}
.pass-perks li::before { content: "✔ "; color: var(--green); }

.pass-fine { color: var(--muted); font-size: 0.82rem; }

/* Engedd el! */
.k-ghost {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--panel);
  border: 3px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  pointer-events: none;
}
.k-ghost-early { border-color: var(--pink); }
.k-ghost-loser {
  border-color: var(--pink);
  border-style: solid;
  background: rgba(255, 46, 136, 0.25);
  animation: win-pulse 0.6s infinite alternate;
}

.k-screen.k-release {
  border-color: var(--pink);
  animation: alarm-flash 0.35s 3 alternate;
}

/* Szabálygyár */
.k-rules {
  width: 100%;
  max-width: 420px;
  background: var(--panel-2);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: left;
}
.k-rules ol {
  margin: 8px 0 0 20px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.k-rules li:first-child { color: var(--ink); font-weight: 700; }

/* Sikeres vásárlás oldal */
.siker {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.siker-box {
  background: var(--panel);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.siker-box h1 { font-size: 1.8rem; }
.siker-upsell { border-color: var(--border); }
.siker-until { font-size: 1.05rem; }

/* ---------- Vezetés doboz kiegészítés ---------- */

.drive-calc-link { color: var(--muted); text-decoration: underline; }

[hidden] { display: none !important; }
