/* =========================================================
   9 Point Game — styles.css
   Mobile-first. Base styles target ~380px phones; a single
   min-width breakpoint at the bottom widens things for larger
   screens. Design: navy/crimson/paper/brass, IBM Plex faces.
   ========================================================= */

:root {
  --navy-950: #0b1e36;
  --navy-800: #122c4d;
  --navy-700: #163864;
  --crimson: #c8202f;
  --crimson-dark: #9e1826;
  --brass: #a9862f;
  --paper: #f6f5f1;
  --paper-line: #e3e0d6;
  --ink: #16181d;
  --ink-soft: #55606e;

  --font-display: "IBM Plex Serif", Georgia, serif;
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* ---- Landing page imagery (Unsplash) ----
     Swap any of these if a photo doesn't load. Format:
     https://images.unsplash.com/photo-XXXX?auto=format&fit=crop&w=1400&q=70
     Grab a new one from unsplash.com -> pick a photo -> the URL is
     images.unsplash.com/photo-... (keep the ?auto=format&fit=crop part). */
  --img-hero: url("https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?auto=format&fit=crop&w=1400&q=70");
  --img-feature: url("https://images.unsplash.com/photo-1535132011086-b8818f016104?auto=format&fit=crop&w=1400&q=70");
  --img-game-3: url("https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=800&q=70");
  --img-game-4: url("https://images.unsplash.com/photo-1592919505780-303950717480?auto=format&fit=crop&w=800&q=70");
  --img-game-5: url("https://images.unsplash.com/photo-1600861194942-f883de0dfe96?auto=format&fit=crop&w=800&q=70");
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  flex: 1;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.tabular {
  font-variant-numeric: tabular-nums;
}

/* ---------- Buttons (min 44px tap target) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-sm {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-crimson {
  background: var(--crimson);
  color: #fff;
}
.btn-crimson:active {
  background: var(--crimson-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy-950);
  color: var(--navy-950);
}
.btn-outline:active {
  background: var(--navy-950);
  color: #fff;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--navy-950);
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-rule {
  height: 3px;
  background: var(--crimson);
}

/* ---------- Hero ---------- */
.hero {
  background: #fff;
  border-bottom: 1px solid var(--paper-line);
  padding: 40px 0 44px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--crimson);
}

.hero-title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--navy-950);
}

.hero-sub {
  margin-top: 16px;
  max-width: 30rem;
  font-size: 15px;
  color: var(--ink-soft);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- Generic section ---------- */
.section {
  padding: 40px 0;
}

.page-title {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-950);
}

.page-sub {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--paper-line);
  padding-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-950);
}

.section-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Game cards ---------- */
.game-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.game-card {
  display: block;
  background: #fff;
  border: 1px solid var(--paper-line);
  padding: 22px;
  transition: border-color 0.15s ease;
}
.game-card:active {
  border-color: var(--navy-950);
}

.game-players {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--crimson);
}

.game-name {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-950);
}

.game-points {
  margin-top: 16px;
  border-top: 1px solid var(--paper-line);
  padding-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.game-points-num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 600;
  color: var(--navy-950);
}

.game-points-label {
  font-size: 12px;
  color: var(--ink-soft);
}

.game-table {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
}

.game-cta {
  margin-top: 18px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy-950);
}

/* ---------- How it works ---------- */
.section-alt {
  background: #fff;
  border-top: 1px solid var(--paper-line);
  padding: 40px 0;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.step-label {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--paper-line);
}

.step-copy {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- Forms ---------- */
.join-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.code-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--paper-line);
  background: #fff;
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.code-input:focus {
  outline: none;
  border-color: var(--navy-950);
}
.code-input::placeholder {
  color: rgba(85, 96, 110, 0.4);
}

.field {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--paper-line);
  background: #fff;
  padding: 0 16px;
  min-height: 50px;
}

.field-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  width: 20px;
}

.field-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
}
.field-input:focus {
  outline: none;
}

.form-error {
  margin-top: 14px;
  font-size: 13px;
  color: var(--crimson);
}

/* ---------- Setup page pieces ---------- */
.setup-group {
  margin-top: 32px;
}
.setup-group.bordered {
  border-top: 1px solid var(--paper-line);
  padding-top: 32px;
}

.setup-h {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-950);
}

.setup-sub {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-soft);
}

.chip-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--paper-line);
  background: #fff;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease,
    color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.chip.is-active {
  border-color: var(--navy-950);
  background: var(--navy-950);
  color: #fff;
}

.info-box {
  margin-top: 16px;
  border: 1px solid var(--paper-line);
  background: #fff;
  padding: 14px 16px;
}
.info-box p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
}

.player-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toggle-list {
  margin-top: 16px;
  border: 1px solid var(--paper-line);
  background: #fff;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  min-height: 54px;
  border-bottom: 1px solid var(--paper-line);
  cursor: pointer;
}
.toggle-row:last-child {
  border-bottom: none;
}

.toggle-label {
  font-size: 14px;
  color: var(--ink);
}

.toggle-pts {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brass);
}

.toggle-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--crimson);
}

/* Sticky bottom action bar on setup/score screens */
.action-bar {
  position: sticky;
  bottom: 0;
  background: var(--paper);
  border-top: 1px solid var(--paper-line);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  margin-top: 32px;
}
.action-bar .wrap {
  padding: 0;
}

/* ---------- Scoreboard plaque ---------- */
.round-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
}

.round-code {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-950);
}

.plaque-stack {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plaque {
  border: 1px solid var(--paper-line);
  background: #fff;
}
.plaque.is-upcoming {
  opacity: 0.6;
}

.plaque-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-950);
  padding: 12px 18px;
}

.plaque-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.plaque-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.status-live {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-final {
  color: var(--brass);
}
.status-upcoming {
  color: rgba(255, 255, 255, 0.4);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  display: inline-block;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.plaque-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--paper-line);
}
.plaque-row:last-child {
  border-bottom: none;
}

.rank-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--paper-line);
  background: #fff;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}
.rank-badge.is-leader {
  border-color: var(--brass);
  background: rgba(169, 134, 47, 0.1);
  color: var(--brass);
}

.plaque-name {
  flex: 1;
  min-width: 0;
}
.plaque-player {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.plaque-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
}

.plaque-total {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-950);
}

/* ---------- Hole-by-hole table ---------- */
.hole-table-wrap {
  margin-top: 16px;
  border: 1px solid var(--paper-line);
  background: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table.hole-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.hole-table th {
  padding: 10px 14px;
  border-bottom: 1px solid var(--paper-line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.hole-table th.num,
.hole-table td.num {
  text-align: right;
}

.hole-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--paper-line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
}
.hole-table tr:last-child td {
  border-bottom: none;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--paper-line);
  background: var(--paper);
  padding: 28px 0;
}

.footer-text {
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- Utility ---------- */
[hidden] {
  display: none !important;
}

/* =========================================================
   Wider screens (tablet / desktop). Everything above is the
   phone layout; this only kicks in at 640px and up.
   ========================================================= */
@media (min-width: 640px) {
  .hero {
    padding: 64px 0;
  }
  .hero-title {
    font-size: 44px;
  }
  .hero-actions {
    flex-direction: row;
  }
  .hero-actions .btn {
    width: auto;
    padding: 0 28px;
  }

  .game-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .action-bar {
    position: static;
    border-top: none;
    padding: 0;
  }
  .action-bar .btn {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot {
    animation: none;
  }
  * {
    transition: none !important;
  }
}

/* =========================================================
   REDESIGN — masthead, image hero, editorial tiles.
   Appended block; mobile-first with a 640px+ widen at end.
   Golf photography from Unsplash, each layered over a navy
   gradient so a failed image degrades to a dark panel,
   never a broken-image icon.
   ========================================================= */

/* ---------- Masthead ---------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy-950);
  color: #fff;
}
.masthead-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  border-radius: 2px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.masthead-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost:active {
  background: rgba(255, 255, 255, 0.1);
}

.masthead-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.masthead-nav::-webkit-scrollbar {
  display: none;
}
.masthead-nav-inner {
  display: flex;
  gap: 4px;
  white-space: nowrap;
}
.nav-link {
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid transparent;
}
.nav-link.is-active {
  color: #fff;
  border-bottom-color: var(--crimson);
}
.nav-link:active {
  color: #fff;
}

/* ---------- Live hero ---------- */
.hero-live {
  position: relative;
  isolation: isolate;
  background: var(--navy-950);
  overflow: hidden;
}
.hero-live-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 30, 54, 0.55), rgba(11, 30, 54, 0.85)),
    var(--img-hero) center / cover no-repeat,
    var(--navy-950);
}
.hero-live-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(11, 30, 54, 0.65) 0%,
    rgba(11, 30, 54, 0.2) 100%
  );
}
.hero-live-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 40px;
  padding-bottom: 44px;
}
.eyebrow-light {
  color: #fff;
  opacity: 0.85;
}
.hero-title-lg {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
}
.hero-sub-light {
  margin-top: 16px;
  max-width: 30rem;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.btn-onphoto {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-onphoto:active {
  background: rgba(255, 255, 255, 0.2);
}
.hero-plaque {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--navy-800);
  color: #fff;
}
.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat {
  background: var(--navy-800);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Game tiles with photos ---------- */
.game-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.game-tile {
  display: block;
  background: #fff;
  border: 1px solid var(--paper-line);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.game-tile:active {
  transform: translateY(1px);
}
.game-tile-photo {
  position: relative;
  height: 140px;
  background-color: var(--navy-800);
  background-size: cover;
  background-position: center;
}
.photo-3 {
  background-image: linear-gradient(
      180deg,
      rgba(11, 30, 54, 0.15),
      rgba(11, 30, 54, 0.55)
    ),
    var(--img-game-3);
}
.photo-4 {
  background-image: linear-gradient(
      180deg,
      rgba(11, 30, 54, 0.15),
      rgba(11, 30, 54, 0.55)
    ),
    var(--img-game-4);
}
.photo-5 {
  background-image: linear-gradient(
      180deg,
      rgba(11, 30, 54, 0.15),
      rgba(11, 30, 54, 0.55)
    ),
    var(--img-game-5);
}
.game-tile-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}
.game-tile-body {
  padding: 18px 20px 20px;
}
.game-tile-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-950);
}
.game-tile-split {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
}
.game-tile .game-cta {
  margin-top: 14px;
}

/* ---------- Feature band ---------- */
.feature-band {
  position: relative;
  margin-top: 8px;
  background: var(--navy-950);
  color: #fff;
  isolation: isolate;
}
.feature-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 30, 54, 0.8), rgba(11, 30, 54, 0.92)),
    var(--img-feature) center / cover no-repeat,
    var(--navy-950);
}
.feature-content {
  padding: 48px 0;
}
.feature-title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.feature-copy {
  margin-top: 14px;
  max-width: 34rem;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* ---------- Step index numbers ---------- */
.step-index {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.section-alt .steps {
  margin-top: 24px;
}

/* ---------- Closing CTA ---------- */
.cta-band {
  background: var(--crimson);
  color: #fff;
}
.cta-band-inner {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.btn-lg {
  min-height: 52px;
  padding: 0 32px;
  font-size: 14px;
}
.cta-band .btn-crimson {
  background: #fff;
  color: var(--crimson);
}
.cta-band .btn-crimson:active {
  background: rgba(255, 255, 255, 0.9);
}

/* ---------- Footer upgrade ---------- */
.site-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-brand {
  color: var(--navy-950);
  font-size: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =========================================================
   Wider screens for redesign pieces
   ========================================================= */
@media (min-width: 640px) {
  .hero-title-lg {
    font-size: 52px;
  }
  .hero-live-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding-top: 72px;
    padding-bottom: 80px;
  }
  .hero-copy {
    flex: 1;
    max-width: 30rem;
  }
  .hero-plaque {
    width: 360px;
    flex-shrink: 0;
  }
  .hero-actions {
    flex-direction: row;
  }
  .hero-actions .btn {
    width: auto;
    padding: 0 28px;
  }

  .stat-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .game-tile-photo {
    height: 160px;
  }

  .feature-content {
    padding: 88px 0;
  }
  .feature-title {
    font-size: 40px;
  }

  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 56px 20px;
  }
  .cta-title {
    font-size: 34px;
  }

  .site-footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
