/*
 * അശ്വമേധം · Ashwamedham
 * Same house style as the other Keralam Times games: lime-washed wall,
 * backwater ink, kasavu brass, banana-leaf green for yes and laterite red for
 * no. One question at a time on a card, like the host's cue card on the show.
 */
:root {
  --bg: #F3F5EF;
  --surface: #FFFFFF;
  --ink: #16271F;
  --ink-soft: #56675D;
  --line: #CAD3CB;
  --line-strong: #8C9B91;
  --key: #DEE5DC;
  --hit: #257A4B;
  --miss: #6E7A73;
  --wrong: #A3462B;
  --on-state: #FFFFFF;
  --accent: #A3462B;
  --gold: #C29B2A;
  --overlay: rgba(14, 26, 20, 0.5);
  --shadow: 0 18px 50px rgba(14, 26, 20, 0.25);
  --pop-shadow: 0 -8px 28px rgba(14, 26, 20, 0.18);
  --font-ui: "Anek Malayalam", "Noto Sans Malayalam", "Manjari", "Kartika", system-ui, sans-serif;
  --font-display: "Baloo Chettan 2", "Anek Malayalam", "Noto Sans Malayalam", "Kartika", system-ui, sans-serif;
  color-scheme: light;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0F1713;
    --surface: #17221C;
    --ink: #E3EBE5;
    --ink-soft: #98A99F;
    --line: #2E3C34;
    --line-strong: #5E7065;
    --key: #28352E;
    --hit: #2C8A55;
    --miss: #3E4943;
    --wrong: #E38561;
    --accent: #E38561;
    --gold: #C9A43A;
    --overlay: rgba(0, 0, 0, 0.6);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    --pop-shadow: 0 -8px 28px rgba(0, 0, 0, 0.5);
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg: #0F1713;
  --surface: #17221C;
  --ink: #E3EBE5;
  --ink-soft: #98A99F;
  --line: #2E3C34;
  --line-strong: #5E7065;
  --key: #28352E;
  --hit: #2C8A55;
  --miss: #3E4943;
  --wrong: #E38561;
  --accent: #E38561;
  --gold: #C9A43A;
  --overlay: rgba(0, 0, 0, 0.6);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  --pop-shadow: 0 -8px 28px rgba(0, 0, 0, 0.5);
  color-scheme: dark;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  -webkit-tap-highlight-color: transparent;
}
button, input { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.app {
  height: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding-inline: 16px;
  display: flex;
  flex-direction: column;
}

/* ----- Header, edged like a kasavu border */
.masthead {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding-block: 10px 8px;
  border-bottom: 5px double var(--gold);
}
.switches { flex-basis: 100%; display: flex; gap: 8px; }
.brand { display: flex; align-items: baseline; gap: 6px; margin-right: auto; min-width: 0; }
.name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 27px;
  line-height: 1.1;
}
.edition { font-size: 13px; font-weight: 600; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.modes { display: inline-flex; padding: 3px; border-radius: 999px; background: var(--key); }
.modes button {
  border: 0;
  padding: 5px 11px 3px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.modes button[aria-selected="true"] { background: var(--surface); color: var(--ink); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14); }
.tools { display: flex; gap: 4px; }
.icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

/* ----- Screens */
.play {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-block: 18px 24px;
}
.screen { display: flex; flex-direction: column; gap: 14px; }
.lede { margin: 18px 0 0; font-family: var(--font-display); font-size: 30px; font-weight: 800; line-height: 1.2; text-wrap: balance; }
.lede-sub { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.45; }
.count-films { margin: 0; padding: 10px 12px 8px; border-left: 5px double var(--gold); background: var(--surface); font-size: 14px; line-height: 1.45; }
.record { margin: 0; color: var(--ink-soft); font-size: 14px; }
.btn.big { min-height: 56px; font-size: 18px; }

.meter { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.qnum { margin: 0; font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.left { margin: 0; color: var(--ink-soft); font-size: 14px; font-variant-numeric: tabular-nums; }

.card.question {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 22px 20px 18px;
  border: 1.5px solid var(--line);
  border-top: 5px double var(--gold);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}
.card.question::after {
  content: "?";
  position: absolute;
  right: 10px;
  bottom: -28px;
  color: var(--gold);
  opacity: 0.18;
  font-family: var(--font-display);
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.card.question.is-guess::after { content: "!"; }
.card.flip { animation: cue 320ms ease-out both; }
@keyframes cue { from { opacity: 0; transform: translateY(8px) rotate(-0.6deg); } }
.q-text { margin: 0; font-family: var(--font-display); font-size: 25px; font-weight: 800; line-height: 1.3; text-wrap: balance; }

.guess-film { padding: 12px 16px 10px; border: 2px dashed var(--gold); border-radius: 12px; }
.g-title { margin: 0; font-family: var(--font-display); font-size: 26px; font-weight: 800; line-height: 1.15; }
.g-year { font-family: var(--font-ui); font-size: 17px; font-weight: 600; color: var(--ink-soft); }
.g-alt { margin: 2px 0 0; color: var(--ink-soft); font-size: 14px; font-style: italic; }
.g-meta { margin: 6px 0 0; font-size: 14px; line-height: 1.4; }

.replies { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.reply { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; min-height: 62px; font-family: var(--font-display); font-size: 19px; line-height: 1.1; }
.reply.yes { background: var(--hit); color: var(--on-state); }
.reply.no { background: var(--wrong); color: var(--on-state); }
.reply.unsure { background: var(--key); color: var(--ink); }
.replies:has(.unsure[hidden]) { grid-template-columns: 1fr 1fr; }
.reply:active { transform: translateY(1px); filter: brightness(0.94); }
.link {
  align-self: flex-start;
  padding: 2px 0;
  border: 0;
  background: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.history { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 4px; }
.h-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 10px 4px;
  border-left: 4px solid var(--line);
  background: var(--surface);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
}
.h-item[data-reply="yes"] { border-left-color: var(--hit); }
.h-item[data-reply="no"] { border-left-color: var(--wrong); }
.h-q { min-width: 0; }
.h-a { flex: none; color: var(--ink-soft); font-weight: 600; }

/* ----- The end */
.verdict { margin: 8px 0 0; font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--hit); line-height: 1.1; }
.verdict.lost { color: var(--accent); }
.verdict-sub { margin: 0; color: var(--ink-soft); font-size: 16px; }
.film-card {
  padding: 14px 16px 12px;
  border-top: 5px double var(--gold);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.film { margin: 0; font-family: var(--font-display); font-size: 28px; font-weight: 800; line-height: 1.15; text-wrap: balance; }
.film .year { font-family: var(--font-ui); font-size: 18px; font-weight: 600; color: var(--ink-soft); }
.film-card .alt { margin: 2px 0 0; font-size: 15px; color: var(--ink-soft); font-style: italic; }
.film-card .meta { margin: 6px 0 0; font-size: 14px; line-height: 1.4; }
.imdb {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px 2px;
  border-radius: 6px;
  background: var(--gold);
  color: #1B1405;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.tell { position: relative; display: grid; gap: 6px; }
.tell label { font-weight: 700; font-size: 16px; }
#tell-input {
  width: 100%;
  height: 48px;
  padding: 4px 14px 0;
  border: 2px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  font: inherit;
  font-size: 17px;
  color: var(--ink);
}
#tell-input:focus { outline: none; border-color: var(--accent); }
.suggestions {
  margin: 0;
  padding: 4px;
  list-style: none;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
}
.option { display: grid; grid-template-columns: 1fr auto; column-gap: 10px; padding: 8px 10px 6px; border-radius: 8px; cursor: pointer; }
.option[aria-selected="true"] { background: var(--key); }
.o-title { font-weight: 600; font-size: 16px; line-height: 1.25; }
.o-year { color: var(--ink-soft); font-size: 14px; font-variant-numeric: tabular-nums; }
.o-alt { grid-column: 1 / -1; color: var(--ink-soft); font-size: 13px; font-style: italic; }
.why h3 { margin: 0 0 6px; font-size: 16px; }
.why-list { margin: 0; padding-left: 18px; display: grid; gap: 6px; font-size: 14px; line-height: 1.4; }
.w-q { display: block; font-weight: 600; }
.w-a { display: block; color: var(--accent); }
.w-note { list-style: none; margin-left: -18px; color: var(--ink-soft); }
.done-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.btn {
  min-height: 46px;
  padding: 6px 10px 3px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
}
.btn.primary { background: var(--hit); color: var(--on-state); }
.btn.ghost { background: var(--key); color: var(--ink); }

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 30;
  max-width: calc(100% - 32px);
  padding: 9px 14px 7px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 6px);
  transition: opacity 160ms, transform 160ms;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ----- Overlays */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow-y: auto;
  background: var(--overlay);
}
.sheet:focus { outline: none; }
.sheet {
  position: relative;
  width: min(100%, 440px);
  max-height: 100%;
  overflow-y: auto;
  padding: 22px 20px 20px;
  border-top: 5px double var(--gold);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.close {
  position: absolute;
  top: 8px; right: 8px;
  width: 36px; height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.sheet h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  text-wrap: balance;
}
.sheet h3 { margin: 18px 0 8px; font-size: 16px; }
.rules { margin: 0; padding-left: 18px; display: grid; gap: 10px; font-size: 15px; line-height: 1.45; }
.fine { margin: 10px 0 0; font-size: 14px; line-height: 1.45; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


@media (max-width: 380px) {
  .name { font-size: 24px; }
  .q-text { font-size: 22px; }
  .reply { font-size: 17px; }
}
