/* ================================================
   IS IT A BANK HOLIDAY TODAY? - STYLES
   AESTHETIC: Retro Indian Govt Office x Neon Rave
   ================================================ */

:root {
  --bg:       #0a0a0f;
  --bg2:      #0f0f18;
  --bg3:      #14141f;
  --fg:       #e8e0d0;
  --fg2:      #9990a0;
  --fg3:      #5a5568;
  --neon:     #00ff88;
  --neon2:    #ff3c6e;
  --amber:    #ffb800;
  --blue:     #4488ff;
  --border:   #2a2a3a;
  --border2:  #1a1a28;
  --stamp-yes: #00ff88;
  --stamp-no:  #ff3c6e;
  --font-mono: 'Space Mono', monospace;
  --font-disp: 'Syne', sans-serif;
  --font-body: 'Vollkorn', serif;
  --tr: 0.2s ease;
  --glow-yes: 0 0 40px #00ff8833, 0 0 80px #00ff8811;
  --glow-no:  0 0 40px #ff3c6e33, 0 0 80px #ff3c6e11;
}

[data-theme="light"] {
  --bg:      #f0ede5;
  --bg2:     #e8e3d8;
  --bg3:     #ddd8cc;
  --fg:      #1a1208;
  --fg2:     #6b5e47;
  --fg3:     #9e8f75;
  --neon:    #007744;
  --neon2:   #cc1144;
  --amber:   #b87800;
  --blue:    #1155cc;
  --border:  #c8b89a;
  --border2: #d8ccb8;
  --glow-yes: 0 2px 20px #00774422;
  --glow-no:  0 2px 20px #cc114422;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

/* ---- ATMOSPHERE ---- */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.scanlines {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
}
[data-theme="light"] .scanlines,
[data-theme="light"] .noise { opacity: 0; }

/* ---- LAYOUT ---- */
.page-wrap {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
  padding: 0 20px;
}

.hidden { display: none !important; }

/* ---- AD SLOTS ---- */
.ad-slot {
  width: 100%;
  background: transparent;
  text-align: center;
  overflow: hidden;
}
.ad-slot-top {
  padding: 8px 0 0;
  border-bottom: 1px solid var(--border2);
  min-height: 50px;
}
.ad-slot-mid {
  padding: 20px 0;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  min-height: 90px;
}
.ad-slot-seo {
  padding: 20px 0;
  min-height: 90px;
}

/* ---- HEADER ---- */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo-block {
  display: flex; align-items: center; gap: 10px;
}
.logo-stamp {
  font-size: 8px; letter-spacing: 0.3em;
  border: 1px solid var(--neon); color: var(--neon);
  padding: 2px 6px; border-radius: 2px;
  font-family: var(--font-mono);
  animation: stampPulse 3s ease-in-out infinite;
}
@keyframes stampPulse {
  0%,100% { box-shadow: 0 0 0 transparent; }
  50% { box-shadow: 0 0 8px var(--neon); }
}
.logo-text {
  font-family: var(--font-disp); font-size: 15px; font-weight: 800;
  letter-spacing: -0.01em; color: var(--fg);
}
.logo-accent { color: var(--neon); }
.logo-tld { color: var(--fg3); font-size: 12px; }

.header-right { display: flex; align-items: center; gap: 12px; }
.live-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; letter-spacing: 0.2em; color: var(--neon);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--neon);
  animation: livePulse 1.2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.4;transform:scale(0.7)}
}
.theme-btn {
  background: none; border: 1px solid var(--border); color: var(--fg2);
  font-size: 16px; width: 32px; height: 32px; border-radius: 2px; cursor: pointer;
  transition: border-color var(--tr), color var(--tr);
  display: flex; align-items: center; justify-content: center;
}
.theme-btn:hover { border-color: var(--neon); color: var(--neon); }

/* ---- TICKER ---- */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid var(--border2);
  padding: 5px 0;
}
.ticker {
  display: flex; gap: 60px; white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  font-size: 9px; letter-spacing: 0.2em; color: var(--fg3);
}
.ticker span { flex-shrink: 0; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- HERO ---- */
.hero-section {
  min-height: 520px; display: flex; align-items: center;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}
.app-state { width: 100%; }

/* ---- LOADING ---- */
.loading-block {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.loading-glyph {
  font-size: 60px; color: var(--neon);
  animation: spin 1.2s linear infinite;
  display: flex; align-items: center; justify-content: center;
  width: 70px; height: 70px;
}
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.loading-label {
  font-size: 11px; letter-spacing: 0.18em; color: var(--fg3); text-transform: uppercase;
}
.loading-bar {
  width: 200px; height: 2px; background: var(--border); border-radius: 1px; overflow: hidden;
}
.loading-fill {
  height: 100%; width: 0; background: var(--neon);
  animation: loadFill 1.8s ease-in-out infinite;
}
@keyframes loadFill {
  0% { width: 0; transform: translateX(0); }
  60% { width: 80%; }
  100% { width: 100%; }
}

/* ---- PERMISSION / ERROR BLOCK ---- */
.perm-block {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  max-width: 500px;
}
.perm-stamp-wrap { margin-bottom: 4px; }
.perm-stamp {
  display: inline-block;
  border: 3px solid var(--neon2); color: var(--neon2);
  font-family: var(--font-disp); font-size: 22px; font-weight: 800;
  letter-spacing: 0.1em; padding: 8px 18px; border-radius: 2px;
  text-align: center; line-height: 1.1;
  transform: rotate(-4deg);
  animation: stampIn 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes stampIn {
  from { opacity: 0; transform: scale(2) rotate(-8deg); }
  to   { opacity: 1; transform: scale(1) rotate(-4deg); }
}
.perm-headline {
  font-family: var(--font-disp); font-size: clamp(22px, 5vw, 32px); font-weight: 800;
  color: var(--fg); line-height: 1.2;
}
.perm-sub {
  font-family: var(--font-body); font-style: italic;
  font-size: 15px; color: var(--fg2); line-height: 1.55;
}

/* ---- CITY SEARCH ---- */
.city-search-wrap {
  width: 100%; max-width: 460px; position: relative;
}
.city-row {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border); border-radius: 2px;
  overflow: hidden; background: var(--bg2);
  transition: border-color var(--tr);
}
.city-row:focus-within { border-color: var(--neon); }
.city-pin {
  padding: 0 10px; font-size: 14px;
  color: var(--fg3); flex-shrink: 0;
}
.city-input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--fg); padding: 12px 8px 12px 0;
  caret-color: var(--neon);
}
.city-input::placeholder { color: var(--fg3); }
.go-btn {
  background: var(--neon); color: var(--bg); border: none;
  font-family: var(--font-disp); font-size: 13px; font-weight: 800;
  letter-spacing: 0.08em; padding: 12px 18px; cursor: pointer;
  transition: background var(--tr), color var(--tr); flex-shrink: 0;
}
.go-btn:hover { background: var(--fg); }

.city-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden; z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-height: 260px; overflow-y: auto;
}
.city-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; cursor: pointer;
  font-size: 13px; color: var(--fg);
  border-bottom: 1px solid var(--border2);
  transition: background var(--tr);
}
.city-option:last-child { border-bottom: none; }
.city-option:hover, .city-option.focused { background: var(--bg3); }
.city-option-state {
  font-size: 10px; color: var(--fg3); letter-spacing: 0.1em;
  margin-left: auto;
}
.city-option-match { color: var(--neon); }

/* ---- RESULT BLOCK ---- */
.result-block { width: 100%; }
.result-top-row {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
  flex-wrap: wrap;
}
.result-stamp {
  font-family: var(--font-disp); font-size: 13px; font-weight: 800;
  letter-spacing: 0.12em; line-height: 1.1;
  padding: 8px 14px; border: 2px solid;
  border-radius: 2px; text-align: center;
  animation: stampIn 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.stamp-yes {
  border-color: var(--stamp-yes); color: var(--stamp-yes);
  box-shadow: 0 0 12px #00ff8844;
}
.stamp-no {
  border-color: var(--stamp-no); color: var(--stamp-no);
  box-shadow: 0 0 12px #ff3c6e44;
}
.result-meta { display: flex; flex-direction: column; gap: 4px; padding-top: 2px; }
.result-location {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg2);
}
.result-location::before { content: '📍 '; }
.result-day { font-size: 10px; color: var(--fg3); letter-spacing: 0.12em; }

/* ---- BIG WORD ---- */
.big-word {
  display: flex; flex-wrap: wrap;
  font-family: var(--font-disp); font-weight: 800; line-height: 0.85;
  margin-bottom: 24px;
}
.big-word span {
  display: block;
  font-size: clamp(88px, 23vw, 180px);
  animation: charReveal 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.big-word span:nth-child(1) { animation-delay: 0.02s; }
.big-word span:nth-child(2) { animation-delay: 0.07s; }
.big-word span:nth-child(3) { animation-delay: 0.12s; }
.big-word span:nth-child(4) { animation-delay: 0.17s; }
.big-word span:nth-child(5) { animation-delay: 0.22s; }

@keyframes charReveal {
  from { opacity: 0; transform: translateY(40px) skewY(4deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0); }
}

.yes-word span { color: var(--neon); text-shadow: var(--glow-yes); }
.no-word span  { color: var(--neon2); text-shadow: var(--glow-no); }

/* ---- HOLIDAY PILL ---- */
.holiday-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--neon); padding: 8px 14px; border-radius: 2px;
  background: #00ff8808; margin-bottom: 16px;
  animation: fadeUp 0.4s 0.3s both;
}
.holiday-pill-tag {
  font-size: 9px; letter-spacing: 0.25em; color: var(--neon); opacity: 0.7;
}
.holiday-pill-name {
  font-family: var(--font-disp); font-size: 17px; font-weight: 800; color: var(--fg);
}

.result-quip {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(14px, 3.5vw, 17px); color: var(--fg2);
  max-width: 480px; line-height: 1.6; margin-bottom: 12px;
  animation: fadeUp 0.4s 0.35s both;
}
.result-note {
  font-size: 12px; color: var(--fg2);
  padding: 10px 14px; border-left: 2px solid var(--neon);
  background: #00ff8808; margin-bottom: 20px; max-width: 480px; line-height: 1.6;
  animation: fadeUp 0.4s 0.4s both;
  border-radius: 0 2px 2px 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- GAME SECTION ---- */
.game-unlock-bar {
  border: 1px solid var(--border); background: var(--bg2);
  border-radius: 2px; padding: 16px 18px;
  margin-bottom: 20px; animation: fadeUp 0.4s 0.5s both;
}
.game-unlock-label {
  display: block; font-size: 10px; letter-spacing: 0.2em;
  color: var(--amber); margin-bottom: 12px;
}
.game-pick-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.gpick {
  display: flex; align-items: center; gap: 7px;
  background: none; border: 1px solid var(--border);
  color: var(--fg); font-family: var(--font-mono); font-size: 12px;
  padding: 9px 14px; border-radius: 2px; cursor: pointer;
  transition: border-color var(--tr), background var(--tr), color var(--tr);
  letter-spacing: 0.04em;
}
.gpick span { font-size: 16px; }
.gpick:hover { border-color: var(--amber); background: var(--bg3); }
.gpick.active { border-color: var(--amber); background: var(--amber); color: var(--bg); }

/* ---- GAME EMBED ---- */
.game-embed {
  border: 1px solid var(--border); border-radius: 2px;
  overflow: hidden; margin-bottom: 20px;
  animation: fadeUp 0.3s both;
}
.game-hud {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 10px 14px; background: var(--bg2); border-bottom: 1px solid var(--border);
  font-size: 11px; letter-spacing: 0.08em; color: var(--fg2);
}
.game-hud-title {
  flex: 1; color: var(--amber); letter-spacing: 0.15em; font-size: 10px;
}
.game-exit {
  background: none; border: 1px solid var(--border2); color: var(--fg3);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 2px; cursor: pointer;
  transition: background var(--tr);
}
.game-exit:hover { background: var(--border); color: var(--fg); }
.game-board {
  padding: 16px; display: flex; justify-content: center;
  align-items: center; flex-direction: column; min-height: 300px;
  position: relative; background: var(--bg);
}

/* ---- WHACK A MOLE ---- */
.wam-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  width: 100%; max-width: 300px;
}
.wam-hole {
  aspect-ratio: 1; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; cursor: pointer; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; user-select: none; transition: border-color 0.1s;
}
.wam-hole:active { transform: scale(0.95); }
.wam-mole {
  position: absolute; bottom: -110%;
  transition: bottom 0.15s ease-out; pointer-events: none; font-size: 38px; line-height: 1;
}
.wam-hole.up .wam-mole { bottom: 2px; }
.wam-hole.up { border-color: var(--amber); }
@keyframes hitFlash { 50% { background: #ff3c6e22; } }
.wam-hole.hit { animation: hitFlash 0.15s; }

/* ---- SNAKE ---- */
#snakeCanvas {
  border: 1px solid var(--border); border-radius: 2px;
  background: var(--bg2); display: block; max-width: 100%; image-rendering: pixelated;
}
.dpad {
  display: flex; flex-direction: column; align-items: center; gap: 3px; margin-top: 12px;
}
.dpad-row { display: flex; gap: 3px; }
.dpad-btn {
  width: 42px; height: 42px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 2px; font-size: 15px; cursor: pointer; color: var(--fg2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr); user-select: none;
}
.dpad-btn:active { background: var(--border); color: var(--fg); }

/* ---- TYPING ---- */
.typing-wrap { width: 100%; max-width: 460px; }
.typing-passage {
  font-family: var(--font-body); font-size: 17px; line-height: 1.8;
  padding: 16px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 2px; margin-bottom: 12px; min-height: 80px;
}
.tc { transition: color 0.05s; }
.tc.ok { color: var(--neon); }
.tc.bad { color: var(--neon2); background: #ff3c6e18; border-radius: 2px; }
.tc.cur { border-left: 2px solid var(--fg); animation: blink 0.8s step-end infinite; }
@keyframes blink { 50% { border-color: transparent; } }
.typing-area {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  color: var(--fg); font-family: var(--font-mono); font-size: 14px;
  padding: 10px 14px; border-radius: 2px; outline: none;
  transition: border-color var(--tr);
}
.typing-area:focus { border-color: var(--neon); }
.typing-stats {
  display: flex; gap: 20px; margin-top: 10px; font-size: 10px;
  letter-spacing: 0.12em; color: var(--fg3);
}
.tstat-val {
  display: block; font-family: var(--font-disp); font-size: 28px;
  color: var(--fg); font-weight: 800; line-height: 1;
}

/* ---- GAME OVERLAYS ---- */
.game-overlay {
  position: absolute; inset: 0; background: var(--bg);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; z-index: 10;
  animation: fadeUp 0.25s both;
}
.game-overlay-score {
  font-family: var(--font-disp); font-size: 80px; font-weight: 800;
  color: var(--neon); line-height: 1; text-shadow: var(--glow-yes);
}
.game-overlay-label {
  font-size: 9px; letter-spacing: 0.3em; color: var(--fg3); text-transform: uppercase;
}
.game-overlay-quip {
  font-family: var(--font-body); font-style: italic; font-size: 14px;
  color: var(--fg2); text-align: center; max-width: 240px;
}
.game-start-btn, .game-again-btn {
  background: var(--neon); color: var(--bg); border: none;
  font-family: var(--font-disp); font-size: 16px; font-weight: 800;
  letter-spacing: 0.1em; padding: 10px 28px; border-radius: 2px; cursor: pointer;
  transition: background var(--tr);
}
.game-start-btn:hover, .game-again-btn:hover { background: var(--fg); }
.game-start-msg {
  font-size: 12px; color: var(--fg2); text-align: center; max-width: 220px; line-height: 1.5;
}

/* ---- GUILT BLOCK ---- */
.guilt-block { margin-bottom: 20px; animation: fadeUp 0.4s 0.25s both; }
.guilt-main {
  font-family: var(--font-disp); font-size: clamp(20px, 5vw, 36px); font-weight: 800;
  color: var(--neon2); letter-spacing: 0.02em; line-height: 1.15; margin-bottom: 8px;
  text-shadow: var(--glow-no); white-space: pre-line;
}
.guilt-sub {
  font-family: var(--font-body); font-style: italic;
  font-size: 15px; color: var(--fg2); line-height: 1.6; max-width: 460px;
}

/* ---- NEXT BOX ---- */
.next-box {
  display: inline-flex; flex-direction: column; gap: 2px;
  border: 1px solid var(--border); padding: 12px 18px;
  background: var(--bg2); border-radius: 2px; margin-bottom: 20px;
  animation: fadeUp 0.4s 0.4s both;
}
.next-tag { font-size: 8px; letter-spacing: 0.3em; color: var(--fg3); }
.next-days {
  font-family: var(--font-disp); font-size: 36px; font-weight: 800;
  color: var(--amber); line-height: 1;
}
.next-name { font-size: 11px; color: var(--neon2); letter-spacing: 0.06em; }

/* ---- ACTION ROW ---- */
.action-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px;
  animation: fadeUp 0.4s 0.45s both;
}
.spill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  padding: 8px 14px; border-radius: 20px; border: 1px solid;
  cursor: pointer; transition: background var(--tr), color var(--tr);
  background: none;
}
.pill-wa { border-color: #25D366; color: #25D366; }
.pill-wa:hover { background: #25D366; color: var(--bg); }
.pill-x { border-color: var(--fg); color: var(--fg); }
.pill-x:hover { background: var(--fg); color: var(--bg); }
.pill-confirm { border-color: var(--neon); color: var(--neon); }
.pill-confirm:hover { background: var(--neon); color: var(--bg); }
.pill-report { border-color: var(--amber); color: var(--amber); }
.pill-report:hover { background: var(--amber); color: var(--bg); }
.crowd-tally { font-size: 11px; color: var(--fg3); letter-spacing: 0.06em; min-height: 20px; }

/* ---- DATE BAR ---- */
.date-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fg3);
  border-bottom: 1px solid var(--border2);
}
.date-bar-r { color: var(--neon); opacity: 0.5; }

/* ---- UPCOMING ---- */
.upcoming-section { padding: 28px 0; border-bottom: 1px solid var(--border); }
.section-hdr {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.section-lbl {
  font-size: 9px; letter-spacing: 0.28em; color: var(--fg3); text-transform: uppercase;
}
.section-loc { font-size: 11px; color: var(--neon); letter-spacing: 0.1em; }
.upcoming-scroll {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.upcoming-card {
  flex-shrink: 0; border: 1px solid var(--border); padding: 14px 16px;
  background: var(--bg2); border-radius: 2px; min-width: 160px;
  transition: border-color var(--tr);
}
.upcoming-card:hover { border-color: var(--neon2); }
.upcoming-card-days {
  font-family: var(--font-disp); font-size: 32px; font-weight: 800;
  color: var(--fg); line-height: 1; margin-bottom: 4px;
}
.upcoming-card-days span { font-size: 12px; font-weight: 400; color: var(--fg3); }
.upcoming-card-name {
  font-size: 11px; color: var(--neon2); line-height: 1.3; margin-bottom: 4px;
}
.upcoming-card-date { font-size: 10px; color: var(--fg3); letter-spacing: 0.08em; }

/* ---- SEO SECTION ---- */
.seo-section { padding: 40px 0; border-bottom: 1px solid var(--border); }
.seo-grid { display: flex; flex-direction: column; gap: 32px; }
.seo-h1 {
  font-family: var(--font-disp); font-size: clamp(24px, 5vw, 40px); font-weight: 800;
  color: var(--fg); margin-bottom: 20px; letter-spacing: -0.01em;
}
.seo-h2 {
  font-family: var(--font-disp); font-size: 18px; font-weight: 800;
  color: var(--fg); margin: 20px 0 8px; letter-spacing: 0.01em;
}
.seo-body p {
  font-family: var(--font-body); font-style: italic;
  font-size: 14px; color: var(--fg2); line-height: 1.75; margin-bottom: 4px;
}
.seo-body strong { font-style: normal; color: var(--fg); font-weight: 400; }

.quick-city-card, .faq-card {
  border: 1px solid var(--border); background: var(--bg2); border-radius: 2px; overflow: hidden;
}
.card-hdr {
  padding: 10px 14px; font-size: 9px; letter-spacing: 0.28em; color: var(--fg3);
  border-bottom: 1px solid var(--border); background: var(--bg3);
}
.quick-city-list {
  display: flex; flex-direction: column;
}
.quick-city-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-bottom: 1px solid var(--border2);
  cursor: pointer; font-size: 13px; color: var(--fg);
  transition: background var(--tr); font-family: var(--font-mono);
}
.quick-city-item:last-child { border-bottom: none; }
.quick-city-item:hover { background: var(--bg3); }
.quick-city-name { display: flex; flex-direction: column; gap: 1px; }
.quick-city-state { font-size: 10px; color: var(--fg3); letter-spacing: 0.08em; }
.quick-city-status { font-size: 11px; letter-spacing: 0.06em; }
.status-yes { color: var(--neon); }
.status-no { color: var(--neon2); }

.faq-card { margin-top: 16px; }
.faq-item {
  border-bottom: 1px solid var(--border2); padding: 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 12px 14px; font-size: 12px; color: var(--fg); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between;
  transition: background var(--tr);
}
.faq-item summary:hover { background: var(--bg3); }
.faq-item summary::after { content: '+'; color: var(--neon); }
.faq-item[open] summary::after { content: '-'; }
.faq-item p {
  padding: 0 14px 12px; font-size: 12px; color: var(--fg2); line-height: 1.65;
}

/* ---- STATE TABLE ---- */
.state-table-section { padding: 32px 0; border-bottom: 1px solid var(--border); }
.state-table {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px;
  margin-top: 16px;
}
.state-row {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--border); padding: 10px 12px; border-radius: 2px;
  background: var(--bg2); font-size: 12px; transition: border-color var(--tr);
  cursor: pointer;
}
.state-row:hover { border-color: var(--fg3); }
.state-row-name { color: var(--fg); }
.state-row-dot {
  width: 7px; height: 7px; border-radius: 50%;
}
.dot-yes { background: var(--neon); box-shadow: 0 0 6px var(--neon); }
.dot-no { background: var(--border); }
.dot-holiday { background: var(--amber); box-shadow: 0 0 6px var(--amber); }

/* ---- ADMIN PANEL ---- */
.admin-panel {
  border-top: 1px solid var(--border); padding: 32px 0;
}
.admin-inner {
  border: 1px solid var(--amber); border-radius: 2px; padding: 20px; background: var(--bg2);
}
.admin-hdr {
  font-size: 11px; letter-spacing: 0.2em; color: var(--amber);
  margin-bottom: 8px; font-family: var(--font-mono);
}
.admin-note {
  font-size: 11px; color: var(--fg3); margin-bottom: 16px; line-height: 1.55;
}
.admin-form { display: flex; flex-direction: column; gap: 8px; max-width: 400px; }
.admin-input {
  background: var(--bg); border: 1px solid var(--border); color: var(--fg);
  font-family: var(--font-mono); font-size: 12px; padding: 8px 12px; border-radius: 2px;
  outline: none; width: 100%; transition: border-color var(--tr);
  resize: vertical;
}
.admin-input:focus { border-color: var(--amber); }
.admin-submit {
  background: var(--amber); color: var(--bg); border: none;
  font-family: var(--font-disp); font-size: 14px; font-weight: 800;
  letter-spacing: 0.08em; padding: 10px 20px; border-radius: 2px; cursor: pointer;
  align-self: flex-start; transition: background var(--tr);
}
.admin-submit:hover { background: var(--fg); }
.admin-list { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.admin-override-item {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--border2); padding: 8px 12px; border-radius: 2px;
  font-size: 11px; color: var(--fg2); background: var(--bg);
}
.admin-del { background: none; border: none; color: var(--neon2); cursor: pointer; font-size: 14px; }

/* ---- SISTER SITES BAR ---- */
.sister-sites-bar {
  padding: 16px 0;
  border-top: 1px solid var(--border2);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 11px; color: var(--fg3);
  font-family: var(--font-mono);
}
.sister-label {
  letter-spacing: 0.08em; flex-shrink: 0;
  color: var(--fg3);
}
.sister-links {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
}
.sister-links a {
  color: var(--fg2); text-decoration: none; letter-spacing: 0.04em;
  transition: color var(--tr);
}
.sister-links a:hover { color: var(--neon); }
.sister-dot {
  color: var(--border); font-size: 14px; line-height: 1;
}

/* ---- FOOTER ---- */
.site-footer { border-top: 1px solid var(--border); padding: 28px 0 40px; }
.footer-inner { display: flex; flex-direction: column; gap: 10px; }
.footer-logo {
  font-family: var(--font-disp); font-size: 14px; font-weight: 800; color: var(--fg3);
}
.footer-disc {
  font-family: var(--font-body); font-style: italic; font-size: 12px;
  color: var(--fg3); line-height: 1.65; max-width: 560px; opacity: 0.6;
}
.footer-links { font-size: 11px; color: var(--fg3); letter-spacing: 0.06em; }
.footer-links a { color: var(--fg3); text-decoration: none; }
.footer-links a:hover { color: var(--amber); }

/* ---- TOAST ---- */
.toast-el {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--fg); color: var(--bg);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  padding: 10px 20px; border-radius: 20px;
  opacity: 0; pointer-events: none; white-space: nowrap; z-index: 999;
  transition: opacity 0.25s, transform 0.25s;
}
.toast-el.on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- DESKTOP ---- */
@media (min-width: 640px) {
  .hero-section { padding: 80px 0 60px; }
  .seo-grid { flex-direction: row; gap: 40px; }
  .seo-main-col { flex: 2; }
  .seo-side-col { flex: 1; }
}
