@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Karla:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* =========================================================
   TOKENS
   Concept: a quiz-show buzzer console on a chalkboard stage.
   Ink/paper for structure, buzzer red + go green carry actual
   game meaning (wrong/correct), marigold is the single "press
   me" accent, chalkboard green is the stage backdrop.
   ========================================================= */
:root{
  --ink:#16243a;
  --ink-2:#1f3350;
  --paper:#eef2ea;
  --card:#ffffff;
  --buzzer:#e6483f;
  --buzzer-dark:#b7241c;
  --go:#2f9e6e;
  --go-dark:#1f7a53;
  --marigold:#f2a916;
  --marigold-dark:#c98300;
  --chalkboard:#234a37;
  --chalkboard-2:#16352a;
  --muted:#5b6b7a;
  --line:#dfe6da;
  --shadow:0 14px 32px rgba(22,36,58,.16);
  --radius:20px;
  --font-display:'Baloo 2',system-ui,sans-serif;
  --font-body:'Karla',system-ui,sans-serif;
  --font-mono:'Space Mono',ui-monospace,monospace;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--paper);
  color:var(--ink);
}
a{color:inherit}
button,input,select{font:inherit}
img{max-width:100%}
:focus-visible{outline:3px solid var(--marigold);outline-offset:2px}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{animation-duration:.001ms!important;transition-duration:.001ms!important}
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  background:rgba(238,242,234,.94);
  backdrop-filter:blur(10px);
  border-bottom:3px solid var(--chalkboard);
}
.header-inner{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand img{display:block;width:52px;height:52px;object-fit:contain}
.nav{
  flex:1 1 auto;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:4px;
}
.nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-family:var(--font-display);
  font-weight:600;
  font-size:15px;
  line-height:1.2;
  padding:9px 14px;
  border-radius:12px;
  white-space:nowrap;
  color:var(--ink);
  border:2px solid transparent;
  transition:background-color .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
}
.nav a:hover,.nav a:focus-visible{
  background:#fff;
  border-color:var(--line);
  box-shadow:0 4px 10px rgba(22,36,58,.10);
  transform:translateY(-1px);
}
.nav a.active{color:var(--chalkboard)}
.menu-toggle{
  flex:0 0 auto;
  width:44px;
  height:44px;
  border:0;
  border-radius:12px;
  background:var(--ink);
  color:#fff;
  cursor:pointer;
  font-size:20px;
  display:none;
}

@media (max-width:920px){
  .header-inner{padding:10px 16px}
  .brand img{width:44px;height:44px}
  .nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    background:#fff;
    border:2px solid var(--line);
    border-top:0;
    border-radius:0 0 18px 18px;
    box-shadow:var(--shadow);
    padding:10px;
  }
  .nav.open{display:flex}
  .nav a{width:100%;padding:12px 10px}
  .menu-toggle{display:block}
}

/* =========================================================
   BREADCRUMBS
   ========================================================= */
.breadcrumbs{
  max-width:1000px;
  margin:14px auto 0;
  padding:0 18px;
  font-size:14px;
  color:var(--muted);
  font-weight:600;
}
.breadcrumbs a{text-decoration:none;color:var(--muted)}
.breadcrumbs a:hover{color:var(--ink)}
.breadcrumbs span{color:var(--ink)}

/* =========================================================
   HERO — the stage. Full-bleed dark band that bleeds down
   behind the game card, so the console reads as spotlit.
   ========================================================= */
.hero{
  width:100%;
  background:
    radial-gradient(circle at 15% 20%, rgba(242,169,22,.14), transparent 40%),
    linear-gradient(180deg, var(--chalkboard) 0%, var(--chalkboard-2) 100%);
  padding:44px 18px 54px;
  text-align:center;
  position:relative;
}
.hero:has(+ .game-shell){padding-bottom:110px}
.hero + .game-shell{margin-top:-78px}
.hero .eyebrow{
  display:inline-block;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  color:var(--marigold);
  font-family:var(--font-display);
  font-weight:600;
  font-size:13px;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:14px;
}
.hero h1{
  max-width:880px;
  margin:0 auto 12px;
  color:#fff;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(32px,5.5vw,54px);
  line-height:1.08;
}
.hero p{
  max-width:640px;
  margin:0 auto;
  color:rgba(255,255,255,.82);
  font-size:18px;
  line-height:1.55;
}

/* =========================================================
   GAME — the buzzer console
   ========================================================= */
.game-shell{max-width:1000px;margin:0 auto 36px;padding:0 18px;position:relative;z-index:2}
.game-card{
  background:var(--card);
  border-radius:26px;
  box-shadow:0 24px 60px rgba(15,25,20,.28);
  overflow:hidden;
  border:3px solid var(--ink);
}
.game-top{
  background:var(--ink);
  color:white;
  padding:16px 18px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.game-title{font-family:var(--font-display);font-size:21px;font-weight:700}
.stats{display:flex;gap:8px;flex-wrap:wrap}
.stat{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  padding:7px 12px;
  border-radius:10px;
  font-family:var(--font-mono);
  font-weight:700;
  font-size:14px;
  letter-spacing:.02em;
}
.game-body{padding:22px}
.controls{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px;margin-bottom:18px}
@media (max-width:640px){.controls{grid-template-columns:1fr}}
.control-group{background:var(--paper);border-radius:16px;padding:12px;border:1px solid var(--line)}
.control-group label{display:block;font-family:var(--font-display);font-size:13px;font-weight:600;color:var(--muted);margin-bottom:7px}
.select{width:100%;border:2px solid var(--line);background:white;color:var(--ink);border-radius:10px;padding:10px 12px;outline:none;font-family:var(--font-body)}
.action-btn{
  border:3px solid var(--ink);
  cursor:pointer;
  border-radius:12px;
  padding:10px 15px;
  font-family:var(--font-display);
  font-weight:600;
  background:white;
  color:var(--ink);
  box-shadow:0 4px 0 var(--ink);
  transition:transform .08s, box-shadow .08s;
}
.action-btn:hover{transform:translateY(-1px)}
.action-btn:active{transform:translateY(3px);box-shadow:0 1px 0 var(--ink)}
.action-btn.primary{background:var(--marigold);box-shadow:0 4px 0 var(--marigold-dark)}
.action-btn.danger{background:#ffe3e0;color:var(--buzzer-dark);box-shadow:0 4px 0 #e8b6b2;border-color:var(--buzzer-dark)}
.action-btn.dark{background:var(--ink);color:white}
.action-btn:disabled{opacity:.5;cursor:not-allowed;transform:none}
.action-row{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:18px}
.question-area{
  min-height:330px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 20% 20%, rgba(242,169,22,.14), transparent 22%),
    radial-gradient(circle at 80% 80%, rgba(35,74,55,.10), transparent 28%),
    var(--paper);
  border:3px dashed var(--line);
  border-radius:22px;
  padding:24px;
}
.question-label{color:var(--muted);font-family:var(--font-display);font-size:14px;font-weight:600}
.question{
  font-family:var(--font-mono);
  font-size:clamp(40px,7.5vw,72px);
  font-weight:700;
  color:var(--ink);
  margin:8px 0 22px;
  text-align:center;
  line-height:1.05;
}
.question.is-review{position:relative}
.question.is-review::after{
  content:"Review";
  display:block;
  font-family:var(--font-display);
  font-size:12px;
  font-weight:600;
  color:var(--chalkboard);
  text-align:center;
  margin-top:6px;
}
.answers{display:grid;grid-template-columns:repeat(2,minmax(120px,210px));gap:14px;width:min(100%,460px)}
.answer-btn{
  position:relative;
  border:3px solid var(--ink);
  min-height:72px;
  border-radius:16px;
  background:#fff;
  color:var(--ink);
  font-family:var(--font-mono);
  font-size:26px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 6px 0 var(--ink);
  transition:transform .08s, box-shadow .08s;
}
.answer-btn:hover{transform:translateY(-2px)}
.answer-btn:active{transform:translateY(4px);box-shadow:0 2px 0 var(--ink)}
.answer-btn.correct{background:var(--go);color:#fff;border-color:var(--go-dark);box-shadow:0 6px 0 var(--go-dark)}
.answer-btn.wrong{background:var(--buzzer);color:#fff;border-color:var(--buzzer-dark);box-shadow:0 6px 0 var(--buzzer-dark)}
.message{min-height:28px;margin-top:14px;font-family:var(--font-display);font-weight:600;text-align:center}
.keyboard-hint{text-align:center;font-size:13px;color:var(--muted);margin-top:10px}
.best-score{text-align:center;font-family:var(--font-mono);font-size:14px;color:var(--muted);font-weight:700;margin-top:4px}

.settings-row{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-top:14px}
.settings-row .action-btn{font-size:14px;padding:9px 13px;box-shadow:0 3px 0 var(--ink)}
.settings-row .action-btn:active{box-shadow:0 1px 0 var(--ink)}

.smart-row{display:flex;align-items:center;gap:8px;justify-content:center;margin-top:14px;font-family:var(--font-display);font-size:14px;font-weight:600;color:var(--ink)}
.smart-row input{width:18px;height:18px;accent-color:var(--marigold)}

.round-summary{max-width:440px;margin:14px auto 0;background:var(--paper);border:2px solid var(--line);border-radius:14px;padding:14px 18px;font-size:14px;color:var(--ink)}
.round-summary .summary-clean{margin:0;font-family:var(--font-display);font-weight:700;color:var(--go-dark);text-align:center}
.summary-list{margin:8px 0;padding-left:20px;font-family:var(--font-mono)}
.summary-list li{margin:2px 0}

/* Sub-topic quick picker */
.picker-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:8px;margin-top:10px}
@media (max-width:640px){.picker-grid{grid-template-columns:repeat(4,1fr)}}
.picker-btn{
  border:2px solid var(--line);
  background:white;
  color:var(--ink);
  border-radius:10px;
  padding:9px 4px;
  font-family:var(--font-mono);
  font-weight:700;
  cursor:pointer;
  font-size:15px;
}
.picker-btn.active{background:var(--marigold);border-color:var(--marigold-dark);color:var(--ink)}

/* =========================================================
   CONTENT
   ========================================================= */
.seo-section{max-width:1000px;margin:0 auto 36px;padding:0 18px}
.content-card{background:var(--card);border-radius:22px;box-shadow:var(--shadow);padding:30px;border:1px solid var(--line)}
.content-card + .content-card{margin-top:20px}
.content-card h2{font-family:var(--font-display);font-size:27px;margin:0 0 14px;color:var(--ink);padding-bottom:10px;border-bottom:3px solid var(--marigold);display:inline-block}
.content-card h3{font-family:var(--font-display);font-size:20px;margin:26px 0 8px;color:var(--ink)}
.content-card p,.content-card li{font-size:16.5px;line-height:1.7;color:var(--ink);opacity:.85;max-width:74ch;overflow-wrap:anywhere}
.content-card ul,.content-card ol{padding-left:22px}
.content-card a{color:var(--chalkboard);font-weight:700;overflow-wrap:anywhere;text-decoration-thickness:2px}
.content-card table{width:100%;border-collapse:collapse;margin:14px 0;font-size:15.5px;display:block;overflow-x:auto;-webkit-overflow-scrolling:touch}
.content-card table tbody,.content-card table tr{display:table;width:100%;min-width:480px}
.content-card table caption{text-align:left;font-family:var(--font-display);font-weight:600;color:var(--ink);margin-bottom:8px}
.content-card th,.content-card td{text-align:left;padding:10px 12px;border-bottom:1px solid var(--line)}
.content-card th{color:var(--ink);font-family:var(--font-display);font-weight:600}
.table-hint{display:none;font-size:12.5px;color:var(--muted);margin:-8px 0 14px;font-style:italic}
@media (max-width:640px){.table-hint{display:block}}
.notice{background:#fff3d6;border:2px solid var(--marigold);border-radius:14px;padding:14px 16px;font-weight:600;color:#7a5600}
.notice.blue{background:#eaf3ee;border-color:var(--chalkboard);color:var(--chalkboard-2)}

.topic-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-top:16px}
@media (max-width:820px){.topic-grid{grid-template-columns:repeat(2,1fr)}}
.topic-card{text-decoration:none;background:var(--paper);border:2px solid var(--line);border-radius:16px;padding:16px;text-align:center;font-family:var(--font-display);font-weight:600;color:var(--ink)}
.topic-card:hover{background:#fff;border-color:var(--marigold)}
.topic-card .tc-sub{display:block;font-size:12.5px;font-weight:500;font-family:var(--font-body);color:var(--muted);margin-top:3px}

/* FAQ */
.faq-item{border-bottom:1px solid var(--line);padding:14px 0}
.faq-item:last-child{border-bottom:0}
.faq-item summary{cursor:pointer;font-family:var(--font-display);font-weight:600;color:var(--ink);font-size:17px;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::before{content:"+";display:inline-block;width:20px;color:var(--buzzer);font-weight:700}
.faq-item[open] summary::before{content:"–"}
.faq-item p{margin:10px 0 0 28px}

.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:16px}
@media (max-width:780px){.info-grid{grid-template-columns:1fr}}
.info-card{background:var(--paper);border:2px solid var(--line);border-radius:16px;padding:18px}
.info-card h4{margin:0 0 6px;font-family:var(--font-display);color:var(--ink);font-size:16.5px}
.info-card p{margin:0;font-size:15px}

.contact-box{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:20px}
@media (max-width:680px){.contact-box{grid-template-columns:1fr}}
.contact-option{background:var(--paper);border:2px solid var(--line);border-radius:16px;padding:20px}

/* =========================================================
   FULLSCREEN — CSS-driven so it works on every platform,
   including iOS Safari where the native API is unreliable.
   ========================================================= */
.game-card.is-fullscreen{
  position:fixed;
  inset:0;
  z-index:9999;
  border-radius:0;
  border:0;
  margin:0;
  max-width:none;
  width:100vw;
  height:100vh;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:var(--paper);
}
.game-card.is-fullscreen .question-area{min-height:40vh}
.game-card.is-fullscreen .question{font-size:clamp(48px,9vw,96px)}
body.htb-lock-scroll{overflow:hidden}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{margin-top:40px;padding:34px 18px 44px;text-align:center;background:var(--chalkboard-2);color:rgba(255,255,255,.75)}
.footer-inner{max-width:1000px;margin:0 auto}
.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-bottom:12px}
.footer-links a{text-decoration:none;color:rgba(255,255,255,.82);font-family:var(--font-display);font-weight:600;font-size:14px}
.footer-links a:hover{color:var(--marigold)}
.small{font-size:13px;color:rgba(255,255,255,.6)}
.content-card .small{color:var(--muted)}

/* =========================================================
   BUZZER STAGE — hub + play views, redesigned after seeing
   the actual Topmarks reference screenshots: diagonal color
   panels, glossy circular buzzer buttons, bottom status bar.
   Own color identity per topic (not Topmarks' palette) so
   this stays a distinct product rather than a skin of theirs.
   ========================================================= */
.buzzer-stage{
  --theme-a:#16243a; --theme-b:#1f3350;
  position:relative;
  border-radius:26px;
  overflow:hidden;
  min-height:520px;
  background:
    linear-gradient(135deg, var(--theme-a) 0%, var(--theme-a) 46%, var(--theme-b) 54%, var(--theme-b) 100%);
  color:#fff;
}
.buzzer-stage[data-theme="times"]{--theme-a:#0f5c56; --theme-b:#157a6e}
.buzzer-stage[data-theme="division"]{--theme-a:#4a2c6d; --theme-b:#6b3f96}
.buzzer-stage[data-theme="bonds"]{--theme-a:#234a37; --theme-b:#16352a}
.buzzer-stage[data-theme="doubles"]{--theme-a:#8a3d1f; --theme-b:#b3552b}
.buzzer-stage[data-theme="squares"]{--theme-a:#7a2142; --theme-b:#9c2f57}
.buzzer-stage[data-theme="mtc"]{--theme-a:#7a5600; --theme-b:#9c7000}
.buzzer-stage.is-fullscreen{
  position:fixed; inset:0; z-index:9999; border-radius:0;
  width:100vw; height:100vh; min-height:100vh;
}

.buzzer-close{
  position:absolute; top:16px; right:16px; z-index:5;
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.92); color:var(--ink);
  border:0; font-size:18px; font-weight:700; cursor:pointer;
  display:none;
}
.buzzer-stage.is-fullscreen .buzzer-close{display:block}

/* --- Hub view: pick a topic --- */
.buzzer-hub{padding:74px 24px 34px; text-align:center}
.stage-title{
  font-family:var(--font-display);
  font-weight:800;
  font-style:italic;
  font-size:clamp(28px,6vw,58px);
  letter-spacing:.01em;
  margin:6px 0 6px;
  color:var(--marigold);
  -webkit-text-stroke:2px var(--ink);
  text-shadow:3px 3px 0 var(--ink), 5px 5px 12px rgba(0,0,0,.35);
  transform:rotate(-2deg);
  display:inline-block;
  line-height:1.3;
}
.stage-sub{font-family:var(--font-body);font-size:15px;color:rgba(255,255,255,.75);margin:0 0 28px}
.buzzer-scatter{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:flex-end;
  gap:22px 26px;
  max-width:760px;
  margin:0 auto;
}
.buzzer-btn, .buzzer-answer{
  border-radius:50%;
  border:4px solid rgba(255,255,255,.4);
  box-shadow:
    0 9px 0 rgba(0,0,0,.28),
    0 16px 26px rgba(0,0,0,.35),
    inset 0 -12px 18px rgba(0,0,0,.22),
    inset 0 10px 16px rgba(255,255,255,.45);
  background: radial-gradient(circle at 35% 26%, var(--btn-light), var(--btn-base) 55%, var(--btn-dark) 100%);
  color:#1a1a1a;
  font-family:var(--font-display);
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  transition:transform .1s ease, box-shadow .1s ease;
  padding:0;
}
.buzzer-btn:hover, .buzzer-answer:hover{transform:translateY(-3px)}
.buzzer-btn:active, .buzzer-answer:active{
  transform:translateY(6px);
  box-shadow:
    0 3px 0 rgba(0,0,0,.28),
    0 6px 12px rgba(0,0,0,.3),
    inset 0 -12px 18px rgba(0,0,0,.22),
    inset 0 10px 16px rgba(255,255,255,.45);
}
.buzzer-btn:disabled, .buzzer-answer:disabled{cursor:default;opacity:.85}

.buzzer-btn{
  width:132px;height:132px;
  --btn-light:#fff6d8; --btn-base:var(--marigold); --btn-dark:var(--marigold-dark);
}
.buzzer-btn:nth-child(odd){margin-bottom:18px}
.buzzer-btn:nth-child(3n){width:150px;height:150px}
.buzzer-btn[data-topic="bonds"]{--btn-light:#eafff2; --btn-base:var(--go); --btn-dark:var(--go-dark)}
.buzzer-btn[data-topic="times"], .buzzer-btn[data-topic="mtc"]{--btn-light:#ffe3df; --btn-base:var(--buzzer); --btn-dark:var(--buzzer-dark)}
.buzzer-btn span{padding:0 10px;line-height:1.15;font-size:16px}
@media (max-width:640px){
  .buzzer-btn{width:104px;height:104px}
  .buzzer-btn:nth-child(3n){width:116px;height:116px}
  .buzzer-btn span{font-size:14px}
  .buzzer-hub{padding:70px 16px 26px}
}

/* --- Play view: question + answer buzzers + bottom bar --- */
.play-view{display:flex;flex-direction:column;min-height:520px}
.play-question-area{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:32px 20px 20px;
  text-align:center;
}
.play-topic-label{font-family:var(--font-display);font-weight:600;font-size:14px;color:rgba(255,255,255,.7);margin-bottom:6px}
.play-question{
  font-family:var(--font-mono);
  font-weight:700;
  font-size:clamp(40px,8vw,76px);
  color:#fff;
  margin:4px 0 26px;
  transition:color .15s ease;
}
.play-question.is-wrong-flash{color:var(--buzzer)}
.play-answers{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px 22px;
  max-width:520px;
}
.buzzer-answer{
  width:88px;height:88px;
  --btn-light:#fff6d8; --btn-base:var(--marigold); --btn-dark:var(--marigold-dark);
  font-size:24px;
}
.buzzer-answer.correct{--btn-light:#eafff2; --btn-base:var(--go); --btn-dark:var(--go-dark); color:#fff}
.buzzer-answer.wrong{--btn-light:#ffe3df; --btn-base:var(--buzzer); --btn-dark:var(--buzzer-dark); color:#fff}
.play-message{font-family:var(--font-display);font-weight:600;margin-top:18px;min-height:26px}

.bottom-status{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  background:rgba(0,0,0,.24);
  padding:12px 20px;
  font-family:var(--font-mono);
  font-size:14px;
}
.bottom-status .menu-btn{
  border:2px solid rgba(255,255,255,.5);
  background:rgba(255,255,255,.1);
  color:#fff;
  border-radius:999px;
  padding:8px 16px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:13px;
  cursor:pointer;
}
.bottom-status .status-info{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}
.bottom-status img{height:22px;width:auto;opacity:.9}

.stage-controls{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
  padding:14px 20px 18px; background:rgba(0,0,0,.14);
}
.stage-controls select{
  border:2px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.12);
  color:#fff;
  border-radius:10px;
  padding:7px 10px;
  font-family:var(--font-body);
  font-size:13px;
}
.stage-controls select option{color:#111}
.stage-controls .settings-row{margin-top:0}
.stage-controls .action-btn{background:rgba(255,255,255,.92);border-color:rgba(255,255,255,.5)}

.best-score-stage{text-align:center;padding:10px 0 4px;font-family:var(--font-mono);font-size:13px;color:rgba(255,255,255,.7);background:rgba(0,0,0,.14)}
