/* Pictetra "retro game-show" design language (per design handoff):
   cream paper background, near-black ink, coral/teal/gold accents,
   Archivo Black display type over Manrope body, 2-3px ink borders and
   flat hard shadows (no blur) on everything structural. Light is the
   designed palette; dark is extrapolated with the same accent hues. */
:root {
  --bg: #FAF3E4;            /* cream page */
  --card: #FFFDF9;          /* card white */
  --ink: #211C16;           /* borders, shadows, primary text */
  --text: #211C16;
  --muted: #4A4136;
  --muted-2: #7A6F5E;
  --dash: #D8C9A3;          /* dashed dividers */
  --coral: #E4573A;
  --peach: #F6DCC9;
  --teal: #2F8F98;
  --teal-dark: #1F6B73;
  --teal-tint: #CDE9E9;
  --gold: #EFB93B;
  --silver: #E2E2E2;
  --bronze: #D8A873;
  --band-bg: #211C16;       /* the black "how it works" / auth band */
  --band-text: #FAF3E4;
  --on-accent: #FFFDF9;     /* text on coral/teal buttons */
  --on-ink: #FAF3E4;        /* text on ink buttons */
  --page-bg: var(--bg);
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #1E1913;
  --card: #2A231B;
  --ink: #F1E7D0;           /* cream ink: borders/shadows flip light */
  --text: #F1E7D0;
  --muted: #C6B99F;
  --muted-2: #93876F;
  --dash: #4A4136;
  --peach: #3A2A1F;
  --teal-tint: #173234;
  --teal-dark: #7FCAD1;
  --silver: #5A554B;
  --bronze: #8A6A48;
  --band-bg: #14100B;
  --band-text: #F1E7D0;
  --on-accent: #FFFDF9;
  --on-ink: #1E1913;
  color-scheme: dark;
}

* { box-sizing: border-box; }

::selection { background: var(--gold); color: #211C16; }

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.5;
  transition: background-color 0.15s ease, color 0.15s ease;
  /* footer pins to the bottom even on short pages, so page tints never
     show as a stray band below it */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; width: 100%; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.5px; }

a { color: var(--coral); font-weight: 700; text-decoration: none; }
a:hover { text-decoration: underline; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* page tints (full-page section colors from the design) + the matching
   two-tone stripe pair for the image placeholder */
:root { --stripe-a: #F6DCC9; --stripe-b: #FFE8D3; }
:root[data-theme="dark"] { --stripe-a: #3A2A1F; --stripe-b: #443226; }
body.page-daily { --page-bg: var(--peach); }
body.page-streak { --page-bg: var(--teal-tint); --stripe-a: #CDE9E9; --stripe-b: #E4F5F5; }
:root[data-theme="dark"] body.page-streak { --stripe-a: #173234; --stripe-b: #1E4046; }
body.page-auth { --page-bg: var(--band-bg); }

/* ------------------------------------------------------------- nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  flex-wrap: wrap;
  padding: 14px 48px;
  background: var(--bg);
  border-bottom: 2px dashed var(--dash);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--coral);
  border-radius: 9px;
  transform: rotate(-6deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--ink);
  flex-shrink: 0;
}
.brand-mark span {
  font-family: var(--font-display);
  color: #FAF3E4;
  font-size: 19px;
  transform: rotate(6deg);
}
.brand-word { font-family: var(--font-display); font-size: 21px; letter-spacing: -0.5px; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a { color: var(--text); font-weight: 700; font-size: 15px; }
.site-nav > a:hover { color: var(--coral); text-decoration: none; }

.nav-account { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.nav-account > a { color: var(--text); font-weight: 700; font-size: 15px; padding: 8px 6px; }
.nav-signup {
  background: var(--ink);
  color: var(--on-ink) !important;
  font-weight: 800;
  padding: 9px 18px !important;
  border-radius: 8px;
}
.nav-signup:hover { text-decoration: none; opacity: 0.88; }
.nav-email {
  font-weight: 800;
  font-size: 14px;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  color: var(--text);
}
.theme-toggle-btn span { display: inline-flex; align-items: center; justify-content: center; }
.theme-toggle-btn:hover { background: var(--gold); color: #211C16; }
.theme-toggle-btn .theme-icon-dark { display: none; }
:root[data-theme="light"] .theme-toggle-btn .theme-icon-dark { display: inline; }
:root[data-theme="light"] .theme-toggle-btn .theme-icon-light { display: none; }

.logout-btn {
  background: none;
  border: none;
  padding: 8px 6px;
  color: var(--coral);
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.logout-btn:hover { text-decoration: underline; }

.link-button {
  background: none;
  border: none;
  padding: 0;
  color: var(--coral);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.link-button:hover { text-decoration: underline; }

.logout-form, .inline-form { display: inline; }

/* ------------------------------------------------------------- layout */

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.site-footer {
  padding: 40px 24px;
  text-align: center;
  background: var(--bg);
  border-top: 2px dashed var(--dash);
}
.site-footer .footer-word { font-family: var(--font-display); font-size: 15px; margin: 0 0 6px; }
.site-footer p { font-size: 13px; color: var(--muted-2); font-weight: 600; margin: 0; }
.site-footer a { color: var(--muted-2); text-decoration: underline; }

/* ------------------------------------------------------------- buttons */

.btn {
  display: inline-block;
  background: var(--coral);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 10px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.btn:hover { text-decoration: none; transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.btn-teal { background: var(--teal); }
.btn-ink { background: var(--ink); color: var(--on-ink); }
.btn-ghost { background: var(--card); color: var(--text); }

/* ------------------------------------------------------------- home */

.home-page { max-width: 1080px; padding-top: 72px; }

.hero-badge-row { display: flex; justify-content: center; margin-bottom: 22px; }
.hero-badge {
  background: var(--gold);
  color: #211C16;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transform: rotate(-2deg);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.5rem, 9vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -1.5px;
  text-align: center;
  margin: 0 0 24px;
}
.hero-sub {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 44px;
}

.home-modes { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; margin-bottom: 90px; }
.mode-card {
  flex: 1 1 340px;
  max-width: 460px;
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 8px 8px 0 var(--coral);
}
.mode-card.streak { box-shadow: 8px 8px 0 var(--teal); }
.mode-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mode-head h2 { font-size: 26px; margin: 0; }
.mode-timer {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  background: var(--peach);
  color: var(--text);
}
.mode-card.streak .mode-timer { background: var(--teal-tint); }
.mode-card p { font-size: 16px; color: var(--muted); font-weight: 600; margin: 0 0 24px; line-height: 1.5; }

.band {
  background: var(--band-bg);
  border-radius: 24px;
  padding: 56px 48px;
}
.band h2 { color: var(--band-text); font-size: 30px; text-align: center; margin: 0 0 40px; }
.band-steps { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.band-step { flex: 1 1 220px; max-width: 280px; text-align: center; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-num.gold { background: var(--gold); color: #211C16; }
.step-num.coral { background: var(--coral); color: #FAF3E4; }
.step-num.teal { background: var(--teal); color: #FAF3E4; }
.band-step p { color: var(--band-text); font-weight: 700; font-size: 15px; margin: 0; }
.band-step a { color: var(--gold); }

/* ------------------------------------------------------------- game */

.game-page { max-width: 720px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--coral);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 24px;
  min-height: 1.3em;
}
body.page-streak .eyebrow { color: var(--teal-dark); }

.streak-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.streak-num { font-family: var(--font-display); font-size: 34px; }
.streak-label { font-weight: 800; color: var(--teal-dark); font-size: 15px; letter-spacing: 0.5px; }

.game-card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 10px 10px 0 var(--ink);
}

.round-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  border: 2px solid var(--ink);
  overflow: hidden;
  margin-bottom: 22px;
  /* two close tones per the mockup's subtle diagonal stripes */
  background: repeating-linear-gradient(135deg, var(--stripe-a), var(--stripe-a) 14px, var(--stripe-b) 14px, var(--stripe-b) 28px);
}
.round-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #211C16; /* fixed dark letterbox in both themes */
}
.round-frame .frame-message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.round-frame .frame-message span {
  font-family: monospace;
  font-size: 13px;
  color: var(--muted);
  background: var(--card);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--ink);
}

.timer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #211C16;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 22px;
  z-index: 2;
}
.timer-badge.urgent { color: #E4573A; }

.game-prompt { text-align: center; font-weight: 800; font-size: 18px; margin: 0 0 20px; }

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.choice-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 12px;
  border: 3px solid var(--ink);
  background: var(--card);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-align: left;
  text-transform: capitalize;
  transition: transform 0.08s ease, background-color 0.08s ease;
}
.choice-btn:hover:not(:disabled) { background: var(--bg); transform: translate(1px, 1px); }
.choice-btn:disabled { cursor: default; opacity: 0.55; }
.choice-letter {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #211C16;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
}
body.page-streak .choice-letter { background: var(--teal); color: #FFFDF9; }
.choice-btn.picked { border-color: var(--gold); background: var(--bg); opacity: 1; }
.choice-btn.picked .choice-letter { background: var(--ink); color: var(--gold); }
.choice-btn.correct { border-color: var(--teal); background: var(--teal-tint); opacity: 1; }
.choice-btn.wrong { border-color: var(--coral); background: var(--peach); color: var(--coral); opacity: 1; }

.progress-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.progress-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--dash); }
.progress-dots .dot.filled { background: var(--ink); }

.reveal-card {
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--bg);
  padding: 16px 18px;
  margin-top: 18px;
}
.reveal-card h2 { margin: 0 0 4px; font-size: 20px; text-transform: capitalize; }
.reveal-card .streak-count { font-weight: 800; color: var(--teal-dark); margin: 0; }

.attribution { margin-top: 8px; font-size: 12px; color: var(--muted-2); font-weight: 600; }
.attribution a { color: var(--muted-2); text-decoration: underline; }

.start-gate { text-align: center; }
.start-gate h1 { font-size: clamp(2rem, 6vw, 2.8rem); margin: 0 0 12px; text-transform: uppercase; }
.start-gate p { color: var(--muted); font-size: 17px; max-width: 46ch; margin: 0 auto 24px; }
.start-gate .cf-turnstile { display: flex; justify-content: center; margin-bottom: 16px; }

.game-done { text-align: center; }
.game-done h2 { font-size: clamp(1.7rem, 5vw, 2.2rem); margin: 0 0 10px; text-transform: uppercase; }
.game-done p { color: var(--muted); }
.game-done .btn { margin: 6px 4px 0; }
.game-done .reveal-card { text-align: left; }

.game-status { text-align: center; color: var(--muted); font-size: 0.9rem; min-height: 1.35em; margin: 0 0 12px; }

/* -------------------------------------------------------------- results */

.results-round {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  margin-bottom: 28px;
}
.results-round .round-frame { border: none; border-bottom: 2px solid var(--ink); border-radius: 0; margin-bottom: 0; }
.results-round-body { padding: 18px 22px 20px; }
.results-round-body h3 { margin: 0 0 8px; font-size: 17px; text-transform: capitalize; }
.results-choices { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.results-choice {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  border: 2px solid var(--dash);
  color: var(--muted);
  text-transform: capitalize;
}
.results-choice.correct { border-color: var(--teal); background: var(--teal-tint); color: var(--teal-dark); }
.results-choice.picked-wrong { border-color: var(--coral); background: var(--peach); color: var(--coral); }
.your-result { font-size: 14px; font-weight: 800; margin: 8px 0 0; }
.your-result.good { color: var(--teal-dark); }
.your-result.bad { color: var(--coral); }

.results-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 32px;
}
.results-summary strong { font-family: var(--font-display); font-weight: 400; color: var(--text); font-size: 22px; }

.page-title { font-size: clamp(2rem, 7vw, 2.5rem); text-align: center; text-transform: uppercase; margin: 0 0 8px; }
.page-sub { text-align: center; color: var(--muted); font-weight: 600; margin: 0 0 32px; }

/* ---------------------------------------------------------- leaderboard */

.board-tabs { display: flex; justify-content: center; gap: 10px; margin: 0 0 20px; flex-wrap: wrap; }
.board-tabs a {
  background: transparent;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.board-tabs a:hover { text-decoration: none; background: var(--gold); color: #211C16; }
.board-tabs a.active { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }

.board-date-row { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 24px; }
.board-date-row label { font-weight: 800; font-size: 13px; color: var(--muted); }
.board-date-row select {
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

.board-card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}
.board-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 2px dashed var(--dash);
}
.board-row:last-child { border-bottom: none; }
.board-row.top { background: var(--gold); color: #211C16; }
.board-row.me { outline: 3px solid var(--coral); outline-offset: -3px; }
.rank-badge {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--muted);
}
.rank-badge.r1 { background: #211C16; color: var(--gold); }
.rank-badge.r2 { background: var(--silver); color: #211C16; }
.rank-badge.r3 { background: var(--bronze); color: #211C16; }
.avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--ink);
}
.avatar.av-0 { background: var(--card); }
.avatar.av-1 { background: var(--peach); }
.avatar.av-2 { background: var(--teal-tint); }
.board-name {
  flex: 1;
  font-weight: 800;
  font-size: 16px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-score { font-family: var(--font-display); font-size: 18px; white-space: nowrap; }
.board-time { font-size: 12px; font-weight: 700; color: var(--muted-2); white-space: nowrap; }
.board-row.top .board-time { color: #4A4136; }

.board-empty { text-align: center; color: var(--muted); margin-top: 2rem; }
.board-note { text-align: center; color: var(--muted-2); font-size: 0.85rem; margin-top: 1.25rem; }

/* --------------------------------------------------------------- auth */

body.page-auth .site-header { background: var(--bg); }
.auth-page { max-width: 480px; }
.auth-card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 8px 8px 0 var(--gold);
}
.auth-card.auth-card-signup { box-shadow: 8px 8px 0 var(--coral); }
.auth-card h1 { font-size: 24px; margin: 0 0 6px; }
.auth-card .auth-sub { color: var(--muted); font-weight: 600; font-size: 14px; margin: 0 0 24px; }

.auth-form { display: flex; flex-direction: column; }
.auth-form label { font-weight: 800; font-size: 13px; margin: 14px 0 6px; }
.auth-form label:first-child { margin-top: 0; }
.auth-form input {
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  font-size: 16px;
  background: var(--card);
  color: var(--text);
}
.auth-form input::placeholder { color: var(--muted-2); font-weight: 600; opacity: 1; }
.field-hint { margin: 6px 0 0; font-size: 12px; color: var(--muted-2); font-weight: 600; }

.cf-turnstile { margin-top: 16px; }

.auth-form button[type="submit"] {
  margin-top: 22px;
  background: var(--ink);
  color: var(--on-ink);
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.auth-card-signup .auth-form button[type="submit"] { background: var(--coral); color: var(--on-accent); }
.auth-form button[type="submit"]:hover { opacity: 0.88; }

.auth-alt-link { margin-top: 16px; font-size: 14px; color: var(--muted); text-align: center; }
body.page-auth main > .auth-alt-link { color: var(--band-text); }
body.page-auth main > .auth-alt-link a { color: var(--gold); }

.form-errors {
  list-style: none;
  color: var(--coral);
  background: var(--peach);
  border: 2px solid var(--coral);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
}
.form-errors li + li { margin-top: 4px; }

.flash { border-radius: 10px; padding: 12px 16px; margin: 0 0 18px; font-size: 14px; font-weight: 700; border: 2px solid; }
.flash-success { color: var(--teal-dark); background: var(--teal-tint); border-color: var(--teal); }
.flash-error { color: var(--coral); background: var(--peach); border-color: var(--coral); }
main > .flash { margin-bottom: 24px; }

/* ---------------------------------------------------------------- error */

.error-page { text-align: center; padding-top: 6rem; }
.error-page h1 { font-size: 5rem; margin: 0; }
.error-page p { color: var(--muted); }

/* --------------------------------------------------------------- mobile */

@media (max-width: 760px) {
  .site-header { padding: 12px 16px; gap: 10px 16px; }
  .site-nav { order: 3; width: 100%; justify-content: center; gap: 20px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-mark span { font-size: 16px; }
  .brand-word { font-size: 18px; }
  main { padding: 32px 16px 64px; }
  .home-page { padding-top: 40px; }
  .hero-sub { font-size: 17px; }
  .band { padding: 36px 24px; border-radius: 20px; }
  .mode-card { padding: 24px; }
  .game-card { padding: 16px; border-radius: 20px; box-shadow: 6px 6px 0 var(--ink); }
  .timer-badge { width: 44px; height: 44px; font-size: 18px; top: 10px; right: 10px; }
  .auth-card { padding: 24px; }
  .board-row { padding: 12px 14px; gap: 10px; }
  .avatar { width: 30px; height: 30px; }
}

@media (max-width: 520px) {
  .choice-grid { grid-template-columns: 1fr; gap: 10px; }
  .choice-btn { padding: 13px 14px; min-height: 52px; }
  .nav-account > a { padding: 6px 2px; }
}
