@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Caslon+Display&display=swap');

:root {
  --ink: #06101f;
  --navy: #08182c;
  --felt: #0b2742;
  --felt-2: #0e3552;
  --blue: #2eb5ed;
  --gold: #d9b35d;
  --gold-soft: #f3d994;
  --ivory: #f7f1e4;
  --muted: #a9b7c7;
  --danger: #a95449;
  --line: rgba(243, 217, 148, .22);
  --glass: rgba(8, 24, 44, .82);
  --radius: 32px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% -10%, rgba(46,181,237,.17), transparent 31rem),
    repeating-radial-gradient(ellipse at 50% 8%, transparent 0 76px, rgba(217,179,93,.035) 77px 79px),
    var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }
p, li { font-size: clamp(.97rem, 1.15vw, 1.08rem); }
h1, h2, h3 { margin: 0 0 .8em; line-height: 1.05; }
h1, h2 { font-family: "Libre Caslon Display", serif; font-weight: 400; }
h1 { font-size: clamp(2.7rem, 6.8vw, 6.7rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4.6vw, 4.4rem); letter-spacing: -.035em; }
h3 { color: var(--gold-soft); font-size: 1.2rem; }
ul, ol { padding-left: 1.3rem; }
li + li { margin-top: .55rem; }

.chip-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 4px;
  background: rgba(255,255,255,.06);
}
.chip-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  box-shadow: 0 0 18px var(--blue);
}

.table-head {
  position: sticky;
  top: 4px;
  z-index: 90;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .8rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 31, .84);
  backdrop-filter: blur(20px);
}
.house-mark img { width: 170px; height: 46px; object-fit: contain; }
.chapter-ring { display: flex; gap: .35rem; flex-wrap: wrap; }
.chapter-ring a {
  padding: .65rem .95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.chapter-ring a:hover, .chapter-ring a.active {
  color: var(--ivory);
  border-color: var(--gold);
  background: rgba(217,179,93,.08);
}
.menu-toggle {
  display: none;
  color: var(--ivory);
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: .7rem 1rem;
}

main > section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
}
.section-token, .eyebrow, .seat-number {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--gold-soft);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.section-token::before, .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-table {
  width: min(1500px, 100%);
  min-height: calc(100vh - 78px);
  padding: clamp(3rem, 6vw, 7rem) clamp(1rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  overflow: hidden;
}
.felt-halo {
  position: absolute;
  width: min(900px, 90vw);
  aspect-ratio: 1.7;
  border: 36px solid rgba(217,179,93,.15);
  border-radius: 50%;
  left: 52%;
  top: 42%;
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 0 0 4px rgba(243,217,148,.12),
    inset 0 0 80px rgba(46,181,237,.12),
    0 0 100px rgba(0,0,0,.7);
}
.dealer-plaque { position: relative; z-index: 2; max-width: 800px; }
.dealer-plaque p { color: #cad4de; max-width: 65ch; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.gold-button, .line-button {
  padding: .9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.gold-button { color: var(--ink); background: var(--gold-soft); }
.line-button { border: 1px solid var(--line); }
.hero-frame {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--gold);
  border-radius: 50% 50% 24px 24px / 30% 30% 24px 24px;
  background: linear-gradient(145deg, #112b49, #06101f);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: inherit;
}
figcaption {
  padding: .85rem .4rem .2rem;
  color: var(--muted);
  font-size: .82rem;
}

.audience-arc {
  max-width: 940px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.audience-arc h2 { max-width: 750px; margin-left: auto; margin-right: auto; }
.chip-list {
  list-style: none;
  margin: 2rem auto;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.chip-list li {
  width: 180px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  padding: 1rem;
  border: 8px dotted rgba(217,179,93,.28);
  border-radius: 50%;
  background: var(--felt);
  box-shadow: inset 0 0 0 2px var(--gold), 0 20px 30px rgba(0,0,0,.25);
}
.table-notice {
  border: 1px solid var(--danger);
  border-radius: 999px;
  padding: .85rem 1.2rem;
  color: #e7c5bf;
}

.round-rhythm {
  border-radius: 48px;
  padding-left: clamp(1.2rem, 5vw, 5rem);
  padding-right: clamp(1.2rem, 5vw, 5rem);
  background: linear-gradient(135deg, rgba(14,53,82,.8), rgba(8,24,44,.46));
  border: 1px solid rgba(46,181,237,.18);
}
.sector-copy { columns: 2 300px; column-gap: 3rem; }
.sector-copy p { margin-top: 0; break-inside: avoid; }
.betting-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
  background: var(--gold);
  border: 2px solid var(--gold);
}
.betting-grid li {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 1rem;
  background: var(--felt);
}
.betting-grid strong { color: var(--gold-soft); text-transform: uppercase; font-size: .75rem; letter-spacing: .1em; }
.betting-grid span { color: var(--muted); }

.curved-track::before {
  content: "";
  position: absolute;
  inset: 4rem 12% auto;
  height: 58%;
  border: 2px solid rgba(46,181,237,.22);
  border-radius: 50%;
  pointer-events: none;
}
.track-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .65rem;
  position: relative;
}
.track-steps li {
  min-height: 220px;
  margin: 0;
  padding: 1rem;
  background: rgba(8,24,44,.9);
  border: 1px solid var(--line);
  border-radius: 100px 100px 22px 22px;
  font-size: .88rem;
}
.track-steps li:nth-child(even) { transform: translateY(36px); }
.track-steps span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-soft);
  font-weight: 800;
}
.wide-reveal {
  margin: 4rem 0 0;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
}
.wide-reveal img { width: 100%; max-height: 700px; object-fit: cover; border-radius: 22px; }

.fact-grid, .score-wheel {
  width: min(1280px, calc(100% - 2rem));
}
.table-shell {
  overflow-x: auto;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
table { width: 100%; border-collapse: collapse; background: rgba(8,24,44,.86); }
th, td { padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,.07); }
th { color: var(--ink); background: var(--gold-soft); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(46,181,237,.06); }
td:first-child { color: var(--gold-soft); font-weight: 700; }

.table-sectors {
  padding: clamp(2rem, 5vw, 4rem);
  border: 16px solid #071a2d;
  border-radius: 50px;
  background:
    radial-gradient(circle at 50% 100%, rgba(46,181,237,.16), transparent 45%),
    var(--felt);
  box-shadow: inset 0 0 0 2px var(--gold), var(--shadow);
}
.sector-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
  margin: 0 auto 3rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  overflow: hidden;
}
.sector-tabs button {
  padding: 1rem;
  color: var(--ivory);
  border: 0;
  border-right: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.sector-tabs button:last-child { border-right: 0; }
.sector-tabs button[aria-selected="true"] { color: var(--ink); background: var(--gold-soft); }
.sector-panel { display: none; max-width: 880px; margin: auto; animation: dealIn .4s ease; }
.sector-panel.active { display: block; }
@keyframes dealIn { from { opacity: 0; transform: rotateX(-8deg) translateY(18px); } }
.dealer-callout {
  margin: 2rem 0 0;
  padding: 1.3rem;
  color: var(--gold-soft);
  border-left: 4px solid var(--gold);
  background: rgba(0,0,0,.2);
  font-family: "Libre Caslon Display", serif;
  font-size: 1.45rem;
}

.radial-notes {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
}
.radial-notes article {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--glass);
}
.radial-notes article:last-child { transform: translateY(80px); }

.mobile-reveal {
  width: min(1500px, 100%);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 0;
  align-items: stretch;
  padding-left: clamp(1rem, 6vw, 7rem);
}
.mobile-copy {
  padding: clamp(2rem, 6vw, 6rem);
  border-radius: 44px 0 0 44px;
  background: var(--ivory);
  color: var(--ink);
}
.mobile-copy .section-token { color: #7b5c21; }
.mobile-reveal figure { margin: 0; padding: 12px; background: var(--gold); border-radius: 0 44px 44px 0; }
.mobile-reveal img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; border-radius: 0 32px 32px 0; }
.mobile-reveal figcaption { color: var(--ink); }

.availability { max-width: 760px; text-align: center; }
.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: var(--ink);
  background: conic-gradient(var(--gold) var(--score-angle, 0deg), #1a3048 0);
  box-shadow: inset 0 0 0 8px var(--ivory);
  font-size: .74rem;
  font-weight: 800;
}

.opposing-felt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 260px 260px 36px 36px;
  background: var(--gold);
}
.opposing-felt article { padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem); }
.positive-side { background: #0b3a42; }
.caution-side { background: #402126; }

.player-positions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.player-positions article {
  position: relative;
  padding: 3rem;
  border: 1px dashed var(--gold);
  border-radius: 50%;
}
.seat-number { color: var(--gold-soft); }

.worth-sector {
  max-width: 880px;
  padding-left: clamp(2rem, 8vw, 7rem);
  border-left: 2px solid var(--blue);
}
.checklist-ring {
  padding: clamp(3rem, 8vw, 7rem);
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle, var(--felt) 0 63%, transparent 64%);
}
.checklist-ring ol {
  max-width: 760px;
  counter-reset: list;
  list-style: none;
  padding: 0;
}
.checklist-ring li {
  counter-increment: list;
  display: flex;
  gap: 1rem;
}
.checklist-ring li::before {
  content: counter(list);
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-soft);
  font-weight: 700;
}

.limit-notice {
  max-width: 900px;
  padding: clamp(3rem, 7vw, 6rem);
  color: var(--ink);
  border-radius: 28px;
  background: var(--gold-soft);
  transform: rotate(-1deg);
}
.limit-badge {
  display: inline-block;
  padding: .45rem .7rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: .1em;
}
.final-plaque {
  text-align: center;
  max-width: 900px;
}

.faq-cards { max-width: 920px; }
.faq-card {
  margin: .8rem 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #102c48, #071522);
  overflow: hidden;
  perspective: 900px;
}
.faq-card button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  color: var(--ivory);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.faq-card i {
  color: var(--gold-soft);
  font-size: .75rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.answer p { padding: 0 1.4rem 1.4rem; margin: 0; color: var(--muted); }
.faq-card.open { border-color: var(--gold); transform: rotateX(0); }

.table-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: #040b15;
}
.table-footer img { width: 170px; }
.table-footer p { color: var(--muted); font-size: .85rem; }
.table-footer a { color: var(--gold-soft); }

.cookie-chip {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 95;
  width: min(360px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 20px;
  background: rgba(6,16,31,.95);
  box-shadow: var(--shadow);
}
.cookie-chip p { margin: 0; font-size: .78rem; }
.cookie-chip button {
  padding: .55rem .8rem;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  background: var(--gold-soft);
  font-weight: 700;
}
.cookie-chip.hidden { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero-table { grid-template-columns: 1fr; min-height: auto; }
  .hero-frame { max-width: 760px; }
  .track-steps { grid-template-columns: repeat(4, 1fr); }
  .track-steps li:nth-child(even) { transform: none; }
  .betting-grid { grid-template-columns: repeat(2, 1fr); }
  .radial-notes article, .radial-notes article:last-child { border-radius: 36px; transform: none; }
  .mobile-reveal { grid-template-columns: 1fr; padding: 4rem 1rem; }
  .mobile-copy, .mobile-reveal figure, .mobile-reveal img { border-radius: 32px; }
  .mobile-reveal img { min-height: 0; }
}

@media (max-width: 760px) {
  .table-head { align-items: flex-start; flex-wrap: wrap; }
  .menu-toggle { display: block; margin-left: auto; }
  .chapter-ring {
    display: none;
    width: 100%;
    padding: .5rem;
    border: 1px solid var(--line);
    border-radius: 20px;
  }
  .chapter-ring.open { display: grid; grid-template-columns: 1fr 1fr; }
  .chapter-ring a { text-align: center; }
  .house-mark img { width: 140px; }
  main > section { width: min(100% - 1rem, 1180px); }
  h1 { font-size: clamp(2.7rem, 15vw, 4.6rem); }
  .hero-table { padding: 3rem 1rem 5rem; }
  .hero-frame { border-radius: 28px; transform: none; }
  .chip-list li { width: 145px; }
  .track-steps { grid-template-columns: 1fr 1fr; }
  .track-steps li { min-height: 180px; border-radius: 60px 60px 18px 18px; }
  .table-sectors { border-width: 8px; padding: 2rem 1rem; }
  .sector-tabs { border-radius: 14px; }
  .sector-tabs button { padding: .8rem .4rem; font-size: .75rem; }
  .radial-notes, .opposing-felt, .player-positions { grid-template-columns: 1fr; }
  .opposing-felt { border-radius: 90px 90px 28px 28px; }
  .player-positions { gap: 1rem; }
  .player-positions article { border-radius: 28px; padding: 2rem; }
  .checklist-ring { border-radius: 48px; background: var(--felt); }
  .table-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 480px) {
  .betting-grid, .track-steps { grid-template-columns: 1fr; }
  .betting-grid li { min-height: 100px; }
  .track-steps li { min-height: auto; border-radius: 22px; }
  .chip-list li { width: 130px; }
  th, td { padding: .8rem; font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
