    /* ── Page overrides ── */
    main { max-width: 1000px; }

    /* ── Hero stats row ── */
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 0;
      /* background/border/border-radius → .card utility */
      overflow: hidden;
      margin-bottom: 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      flex-wrap: wrap;
    }
    .hero-stat {
      flex: 1;
      min-width: 140px;
      text-align: center;
      padding: 22px 16px;
      border-right: 1px solid var(--border);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat .hs-icon { font-size: 24px; margin-bottom: 8px; display: block; }
    .hero-stat .hs-val {
      font-family: 'Oswald', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--gold);
      display: block;
      line-height: 1.2;
    }
    .hero-stat .hs-label { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; display: block; }

    /* ── Notice box ── */
    .notice-box {
      background: rgba(212,175,55,0.08);
      border: 1px solid rgba(212,175,55,0.45);
      border-left: 4px solid var(--gold);
      border-radius: var(--radius);
      padding: 16px 20px;
      margin-bottom: 24px;
      font-size: 13.5px;
      line-height: 1.6;
      color: var(--text);
    }
    .notice-box strong { color: var(--gold2); }

    /* ── Match the Stack callout ── */
    .mts-callout {
      background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.05) 100%);
      border: 1px solid rgba(212,175,55,0.5);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin-bottom: 24px;
      text-align: center;
      box-shadow: 0 0 20px rgba(212,175,55,0.1);
    }
    .mts-callout .mts-icon { font-size: 32px; margin-bottom: 8px; display: block; }
    .mts-callout h2 {
      font-family: 'Oswald', sans-serif;
      font-size: 22px;
      color: var(--gold2);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .mts-callout p { font-size: 13px; color: var(--muted); }

    /* ── Amenities ── */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 12px;
      margin-bottom: 32px;
    }
    .amenity-card {
      /* background/border/border-radius → .card utility */
      padding: 16px;
      text-align: center;
    }
    .amenity-card .am-icon { font-size: 26px; margin-bottom: 8px; display: block; }
    .amenity-card .am-label { font-size: 12px; color: var(--text); font-weight: 500; line-height: 1.4; }

    /* ── Games table ── */
    .games-section { margin-bottom: 32px; }
    .games-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .game-group {
      /* background/border/border-radius → .card utility */
      overflow: hidden;
    }
    .game-group-header {
      background: rgba(212,175,55,0.1);
      border-bottom: 1px solid var(--border);
      padding: 10px 16px;
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
    }
    .game-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      font-size: 13px;
    }
    .game-row:last-child { border-bottom: none; }
    .game-stakes { color: var(--text); font-weight: 500; }
    .avail-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 20px;
    }
    .avail-badge.always   { background: rgba(39,174,96,0.2);  color: #6fcf97; border: 1px solid rgba(39,174,96,0.4); }
    .avail-badge.often    { background: rgba(230,126,34,0.2);  color: #f0a060; border: 1px solid rgba(230,126,34,0.4); }
    .avail-badge.demand   { background: rgba(41,128,185,0.2);  color: #7fb3f5; border: 1px solid rgba(41,128,185,0.35); }

    /* ── Waitlist section ── */
    .waitlist-card {
      /* background/border/border-radius → .card utility */
      padding: 24px;
      margin-bottom: 24px;
      display: flex;
      gap: 24px;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .waitlist-icon { font-size: 40px; flex-shrink: 0; }
    .waitlist-content h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 17px;
      color: var(--gold);
      margin-bottom: 8px;
      letter-spacing: 1px;
    }
    .waitlist-content p { font-size: 13px; color: var(--muted); line-height: 1.7; }
    .waitlist-content p strong { color: var(--text); }
    .waitlist-content a { color: var(--gold3); text-decoration: none; }
    .waitlist-content a:hover { text-decoration: underline; }

    /* ── BBJ section ── */
    .bbj-card {
      /* background/border/border-radius → .card utility */
      padding: 24px;
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
    }
    .bbj-card::before {
      content: none;
    }
    .bbj-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .bbj-card p { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 10px; }
    .bbj-card p:last-of-type { margin-bottom: 16px; }
    .bbj-card strong { color: var(--text); }
    .bbj-amount-display {
      text-align: center;
      padding: 16px;
      margin-bottom: 16px;
      background: rgba(212,175,55,0.06);
      border: 1px solid rgba(212,175,55,0.3);
      border-radius: 12px;
    }
    .bbj-amount-val {
      font-family: 'Oswald', sans-serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--gold2);
      display: block;
      text-shadow: 0 0 20px rgba(212,175,55,0.4);
    }
    .bbj-amount-asof {
      font-size: 12px;
      color: var(--muted);
      display: block;
      margin-top: 4px;
      letter-spacing: 1px;
    }
    .bbj-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(212,175,55,0.1);
      border: 1px solid rgba(212,175,55,0.4);
      border-radius: 30px;
      padding: 9px 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s;
    }
    .bbj-link:hover { background: rgba(212,175,55,0.18); box-shadow: 0 0 14px rgba(212,175,55,0.2); }

    /* ── Tournaments ── */
    .tournaments-section { margin-bottom: 32px; }
    .tourney-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 14px;
    }
    .tourney-card {
      /* background/border/border-radius → .card utility */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .tourney-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.45);
    }
    .tourney-card.featured-card { border-color: rgba(139,32,32,0.5); } /* thu-major / seasonal event */
    .tc-stripe { height: 4px; }
    .wed-stripe        { background: var(--wed); }
    .sun-stripe        { background: var(--sun); }
    .sun550-stripe     { background: var(--sun550); }
    .main-stripe       { background: var(--main); }
    /* Pickering */
    .tue-stripe        { background: var(--tue); }
    .thu-stripe        { background: var(--thu); }
    .thu-bounty-stripe { background: var(--thu-bounty); }
    .thu-deep-stripe   { background: var(--thu-deep); }
    .thu-major-stripe  { background: var(--thu-major); }
    .tc-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
    .tc-day {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 2px;
    }
    .tc-buyin {
      font-family: 'Oswald', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1.1;
    }
    .tc-buyin span { font-size: 14px; color: var(--muted); font-weight: 400; }
    .tc-detail { font-size: 12px; color: var(--text); }
    .tc-detail.muted { color: var(--muted); font-size: 11px; margin-top: 2px; }

    /* ── Live Games section ── */
    .live-section { margin-bottom: 32px; }
    .live-section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
      flex-wrap: wrap;
      gap: 8px;
    }
    .live-section-header .section-title { margin-bottom: 0; }
    .live-call-cta {
      text-transform: none;
      font-family: var(--font-body, 'Inter', sans-serif);
      font-size: 11px;
      letter-spacing: 0.3px;
      color: var(--muted);
      font-weight: 400;
    }
    .live-call-cta a { color: var(--gold3); text-decoration: none; }
    .live-call-cta a:hover { text-decoration: underline; }
    .live-timestamp {
      font-size: 11px;
      color: var(--muted);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 4px 12px;
      letter-spacing: 0.5px;
    }
    .live-timestamp .live-dot {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #6fcf97;
      margin-right: 6px;
      vertical-align: middle;
      position: relative;
      top: -1px;
    }
    .live-tables-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .live-table-card {
      /* background/border/border-radius → .card utility */
      overflow: hidden;
    }
    .live-table-card-header {
      background: rgba(212,175,55,0.1);
      border-bottom: 1px solid var(--border);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
    }
    .live-table-card-header .lh-icon { font-size: 15px; }
    .lt-sep {
      color: var(--muted);
      opacity: 0.6;
      font-weight: 400;
    }
    .lt-subtitle {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: none;
      color: var(--gold2);
    }
    .live-table-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      font-size: 13px;
    }
    .live-table-row:last-child { border-bottom: none; }
    .live-table-row.empty {
      color: var(--muted);
      font-style: italic;
      font-size: 12px;
    }
    .ltr-game { color: var(--text); font-weight: 500; }
    .ltr-limits { color: var(--muted); font-size: 11px; margin-top: 2px; }
    .ltr-right { text-align: right; }
    .ltr-count {
      font-family: 'Oswald', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }
    .ltr-count-label { font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
    .ltr-waiting-count {
      font-family: 'Oswald', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--amber);
      line-height: 1;
    }
    .live-note {
      margin-top: 10px;
      font-size: 11px;
      color: var(--muted);
      text-align: right;
      font-style: italic;
    }

    /* ── Live error card ── */
    .live-error-full     { grid-column: 1 / -1; }
    .live-error-body     { line-height: 1.8; }
    .ltr-note            { margin-top: 4px; }
    .ltr-contact-link    { color: var(--gold3); text-decoration: none; font-weight: 600; }
    .ltr-contact-link:hover { text-decoration: underline; }

    /* ── Tournament paused badge ── */
    .tc-paused-badge     { font-size: 11px; color: var(--amber); letter-spacing: 1px; }

    /* ── LEV2L menu links ── */
    /* ── Dining grid ── */
    .dining-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 12px;
      margin-bottom: 24px;
    }
    .dining-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px 16px;
    }
    .dining-card .dc-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 3px;
    }
    .dining-card .dc-type {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .dining-card .dc-hours {
      font-size: 12px;
      color: var(--text-dim, #b0a890);
      margin-bottom: 10px;
      line-height: 1.6;
    }
    .dining-card .dc-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .dining-card .dc-links a {
      font-size: 11px;
      color: var(--accent);
      text-decoration: none;
      border: 1px solid rgba(212,175,55,0.3);
      border-radius: 4px;
      padding: 3px 8px;
      transition: background 0.15s, border-color 0.15s;
    }
    .dining-card .dc-links a:hover {
      background: rgba(212,175,55,0.1);
      border-color: rgba(212,175,55,0.6);
    }

    .lev2l-card {
      /* background/border/border-radius → .card utility */
      padding: 24px;
      margin-bottom: 32px;
      display: flex;
      gap: 24px;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .lev2l-icon { font-size: 36px; flex-shrink: 0; }
    .lev2l-content { flex: 1; min-width: 0; }
    .lev2l-content h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 17px;
      color: var(--gold);
      margin-bottom: 6px;
      letter-spacing: 1px;
    }
    .lev2l-content p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    /* ── Kitchen hours dropdown ── */
    .kitchen-hours {
      margin-bottom: 14px;
    }
    .kitchen-hours summary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      user-select: none;
      list-style: none;
      padding: 4px 0;
      transition: color 0.2s;
    }
    .kitchen-hours summary::-webkit-details-marker { display: none; }
    .kitchen-hours summary::after {
      content: '▾';
      font-size: 11px;
      transition: transform 0.2s;
    }
    .kitchen-hours[open] summary::after { transform: rotate(-180deg); }
    .kitchen-hours summary:hover { color: var(--gold); }
    .kitchen-hours ul {
      list-style: none;
      margin-top: 10px;
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }
    .kitchen-hours li {
      display: flex;
      justify-content: space-between;
      padding: 7px 14px;
      font-size: 13px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .kitchen-hours li:last-child { border-bottom: none; }
    .kitchen-hours li span:first-child { color: var(--text); }
    .kitchen-hours li span:last-child  { color: var(--muted); }

    .menu-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .menu-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(212,175,55,0.08);
      border: 1px solid rgba(212,175,55,0.35);
      border-radius: 30px;
      padding: 8px 16px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s;
    }
    .menu-link:hover {
      background: rgba(212,175,55,0.16);
      box-shadow: 0 0 12px rgba(212,175,55,0.18);
    }

    /* ── Live Tournament card ── */
    .live-tournament-wrapper {
      margin-top: 14px;
    }
    .live-tournament-card {
      border-color: rgba(212,175,55,0.4);
      box-shadow: 0 0 18px rgba(212,175,55,0.08);
    }
    .tc-tourney-name {
      padding: 8px 16px 0;
      font-size: 13px;
      color: var(--gold2);
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    .tc-clock-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      padding: 12px 0 14px;
    }
    .tc-clock-stat {
      text-align: center;
      padding: 8px 12px;
      border-right: 1px solid rgba(255,255,255,0.06);
    }
    .tc-clock-stat:last-child { border-right: none; }
    .tc-clock-val {
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--gold);
      display: block;
      line-height: 1.2;
    }
    .tc-clock-label {
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 3px;
      display: block;
    }

    /* ── Responsive ── */
    @media (max-width: 600px) {
      .games-grid { grid-template-columns: 1fr; }
      .live-tables-grid { grid-template-columns: 1fr; }
      /* 2×2 grid on phones */
      .hero-stats { display: grid; grid-template-columns: 1fr 1fr; flex-direction: unset; }
      .hero-stat { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 10px; }
      .hero-stat:nth-child(even)  { border-right: none; }
      .hero-stat:nth-child(n+3)   { border-bottom: none; }
      .tc-clock-grid { grid-template-columns: repeat(3, 1fr); }
    }

/* ── Dining card menu button ── */
.dc-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dc-menu-btn:hover { color: var(--gold2); }

/* ── Menu Modal ── */
.menu-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 18, 30, 0.82);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.menu-modal-overlay.modal-open { display: flex; }

.menu-modal {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.menu-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s;
}
.menu-modal-close:hover { color: var(--text); }

.menu-modal-header {
  position: relative;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 60%);
}
.menu-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.menu-modal-subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.menu-modal-body {
  overflow-y: auto;
  padding: 20px 24px 24px;
  flex: 1;
}

.menu-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold3);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding-bottom: 6px;
  margin: 20px 0 12px;
}
.menu-section-title:first-child { margin-top: 0; }
.menu-section-price {
  font-size: 12px;
  color: var(--gold2);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 6px;
}
.menu-section-note {
  font-size: 12px;
  color: var(--muted);
  margin: -8px 0 12px;
}

.menu-items { display: flex; flex-direction: column; gap: 10px; }

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.menu-item-info { flex: 1; }
.menu-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.menu-item-desc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.5;
}
.menu-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

.menu-addons { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.menu-addon-row {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 6px 12px;
  align-items: baseline;
}
.menu-addon-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.menu-addon-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}
.menu-addon-items {
  font-size: 11px;
  color: var(--muted);
  grid-column: 1 / -1;
  line-height: 1.5;
}

.menu-badge-new {
  display: inline-block;
  background: rgba(39,174,96,0.18);
  color: var(--green2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 4px;
  border: 1px solid rgba(111,207,151,0.25);
  vertical-align: middle;
  margin-left: 4px;
}

.menu-modal-footer {
  margin-top: 20px;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  opacity: 0.7;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .menu-modal { max-height: 92dvh; }
  .menu-modal-body { padding: 16px 18px 20px; }
  .menu-modal-header { padding: 18px 18px 14px; }
}
