:root {
  --bg: #080807;
  --panel: #12100d;
  --panel-soft: #1b1712;
  --gold: #d7ad45;
  --gold-bright: #f1d37a;
  --red: #a72c2a;
  --ink: #fff8e8;
  --muted: #c9c0aa;
  --line: rgba(255, 255, 255, 0.13);
  --max: 1180px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 46px);
  background: rgba(8, 8, 7, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 148px;
  height: 52px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav a:hover,
.header-action:hover {
  color: var(--gold-bright);
}

.header-action {
  color: var(--gold);
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.96), rgba(8, 8, 7, 0.55), rgba(8, 8, 7, 0.1)),
    linear-gradient(0deg, var(--bg), rgba(8, 8, 7, 0.05) 42%);
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.media-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.media-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #15100a;
  border-color: var(--gold);
}

.button.secondary,
.media-tab {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.button.whatsapp {
  background: #20c363;
  color: #06190d;
  border-color: #20c363;
}

.media-tab.active {
  background: var(--red);
  border-color: var(--red);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 42px 0 0;
}

.hero-stats div,
.event-card,
.news-grid a {
  padding: 22px;
  background: rgba(18, 16, 13, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--gold-bright);
  font-size: 1.2rem;
  font-weight: 900;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 92px);
  gap: 10px;
  margin-top: 18px;
}

.countdown div {
  display: grid;
  place-items: center;
  min-height: 78px;
  background: rgba(215, 173, 69, 0.12);
  border: 1px solid rgba(215, 173, 69, 0.42);
  border-radius: 8px;
}

.countdown strong {
  font-size: 1.75rem;
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.notice-band {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 5vw, 60px);
  padding: 13px 18px;
  background: var(--red);
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.notice-band a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.event-banner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  padding: 16px clamp(14px, 3vw, 34px);
  background: #0b0907;
  color: var(--ink);
  border-top: 1px solid rgba(215, 173, 69, 0.28);
  border-bottom: 1px solid rgba(215, 173, 69, 0.28);
}

.event-banner-label,
.event-banner-card {
  min-height: 96px;
  border-radius: 8px;
}

.event-banner-label {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(215, 173, 69, 0.28), rgba(164, 44, 42, 0.16));
  color: var(--gold-bright);
  border: 1px solid rgba(215, 173, 69, 0.28);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-banner-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.event-banner-card {
  display: grid;
  align-content: center;
  grid-template-rows: auto auto auto auto;
  gap: 5px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #17120c, #100d09);
  border: 1px solid rgba(215, 173, 69, 0.28);
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.event-banner-card span {
  display: block;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-banner-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.15;
}

.event-banner-card small,
.event-banner-card em {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-banner-card small {
  color: var(--gold);
}

.section,
.media-section,
.join-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 110px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 920px;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.compact {
  max-width: 900px;
}

.venue-section {
  border-bottom: 1px solid var(--line);
}

.live-section {
  border-bottom: 1px solid var(--line);
}

.live-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.live-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 34px;
}

.live-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
}

.live-feature,
.live-update {
  background:
    linear-gradient(135deg, rgba(215, 173, 69, 0.13), transparent 64%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.live-feature {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-color: rgba(215, 173, 69, 0.42);
}

.live-feature span,
.live-update span,
.live-update time {
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-feature h3 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.live-feature p,
.live-update p {
  color: var(--muted);
  line-height: 1.6;
}

.live-feature a {
  width: fit-content;
  margin-top: 12px;
  color: var(--gold-bright);
  font-weight: 900;
}

.live-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.live-update {
  min-height: 154px;
  padding: 18px;
}

.live-update div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.live-update h3 {
  margin-bottom: 8px;
}

.live-update p {
  margin-bottom: 0;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.venue-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(215, 173, 69, 0.12), transparent 62%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.venue-card span {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-card p {
  color: var(--muted);
  line-height: 1.65;
}

.venue-card a,
.venue-actions a {
  color: var(--gold-bright);
  font-weight: 900;
}

.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.event-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
}

.next-event .section-heading {
  max-width: 980px;
}

.next-event h2 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  overflow-wrap: anywhere;
}

.feature-card {
  grid-row: span 3;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 42%;
}

.feature-card img.trophy-cutout {
  object-fit: contain;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 42%, rgba(215, 173, 69, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%),
    #090806;
}

.feature-card div {
  padding: 28px;
}

.pill,
.event-card span,
.media-card span,
time {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card p,
.event-card p,
.news-grid p,
.owners-copy p,
.join-copy p,
.media-card p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-card a {
  color: var(--gold-bright);
  font-weight: 900;
}

.poker-tools {
  border-top: 1px solid var(--line);
}

.tools-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 16px;
}

.tool-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tool-head span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-head h3 {
  margin-top: 8px;
}

.chip-stack {
  position: absolute;
  right: 30px;
  top: 76px;
  width: 126px;
  height: 128px;
}

.chip-stack span {
  position: absolute;
  left: calc(var(--i) * 5px);
  bottom: calc(var(--i) * 18px);
  width: 94px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8f1f1f 0 20%, #f6e7b2 20% 29%, #8f1f1f 29% 70%, #f6e7b2 70% 79%, #8f1f1f 79%);
  border: 3px solid #f1d37a;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 130px 0 0;
}

.spec-list div,
.buyin-breakdown div,
.event-notes div {
  padding: 14px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-list dt,
.buyin-breakdown span,
.event-notes span {
  color: var(--muted);
  font-size: 0.78rem;
}

.spec-list dd {
  margin: 6px 0 0;
  font-weight: 900;
}

.structure-link,
.structure-source a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 16px;
  color: #15100a;
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.structure-accordion {
  margin-top: 18px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(215, 173, 69, 0.42);
  border-radius: 8px;
}

.anchor-target {
  display: block;
  scroll-margin-top: 110px;
}

.structure-accordion summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  color: #15100a;
  background: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

.structure-accordion summary::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
}

.structure-accordion[open] summary::after {
  content: "-";
}

.structure-viewer {
  padding: 16px;
}

.structure-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.structure-notes li {
  padding: 12px;
  color: var(--muted);
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.45;
}

.structure-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.structure-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}

.structure-row:first-child {
  border-top: 0;
}

.structure-row span {
  overflow-wrap: anywhere;
}

.structure-head {
  color: #15100a;
  background: var(--gold);
  font-weight: 900;
}

.structure-source {
  margin: 0;
}

.buyin-breakdown {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.buyin-breakdown strong {
  display: block;
  color: var(--gold-bright);
  font-size: 2rem;
}

.small-note {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.flight-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 30px 0 18px;
}

.flight-tabs button {
  min-height: 42px;
  color: var(--ink);
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.flight-tabs button.active {
  color: #15100a;
  background: var(--gold);
  border-color: var(--gold);
}

.flight-detail {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(167, 44, 42, 0.22);
  border: 1px solid rgba(167, 44, 42, 0.55);
  border-radius: 8px;
}

.flight-detail span {
  color: var(--muted);
  line-height: 1.5;
}

.dates-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dates-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dates-list div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--panel-soft);
  border-radius: 8px;
}

.dates-list span {
  color: var(--muted);
}

.history-section {
  padding-top: 0;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.season-grid article,
.season-grid a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 58%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.season-grid article.active-season,
.season-grid a.active-season {
  background:
    linear-gradient(135deg, rgba(215, 173, 69, 0.22), transparent 62%),
    var(--panel);
  border-color: rgba(215, 173, 69, 0.42);
}

.season-grid span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.season-grid h3 {
  margin: 12px 0;
}

.season-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.venue-record {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.monthly-heading {
  margin-top: 42px;
}

.venue-record div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.venue-record strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 1.1rem;
  line-height: 1.15;
}

.venue-record span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.history-grid article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(215, 173, 69, 0.12), transparent),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.history-grid span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.history-grid dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.history-grid dl div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.history-grid dt {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.history-grid dd {
  margin: 0;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.history-grid dl div:nth-child(-n+3) dd {
  white-space: nowrap;
}

.schedule-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr 2fr 1fr 0.9fr;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-head {
  background: var(--gold);
  color: #15100a;
  font-weight: 900;
}

.table-row.main-event-row {
  background: rgba(215, 173, 69, 0.16);
  border-left: 4px solid var(--gold);
}

.table-row.ladies-event-row {
  background: rgba(214, 74, 144, 0.18);
  border-left: 4px solid #d64a90;
}

.table-row.side-event-row {
  background: rgba(164, 32, 32, 0.2);
  border-left: 4px solid #a42020;
}

.table-row.main-event-row span:nth-child(3),
.table-row.main-event-row span:nth-child(4),
.table-row.main-event-row span:nth-child(5) {
  color: var(--gold-bright);
  font-weight: 900;
}

.table-row.ladies-event-row span:nth-child(3),
.table-row.ladies-event-row span:nth-child(4),
.table-row.ladies-event-row span:nth-child(5) {
  color: #ff9ccb;
  font-weight: 900;
}

.table-row.side-event-row span:nth-child(3),
.table-row.side-event-row span:nth-child(4),
.table-row.side-event-row span:nth-child(5) {
  color: #ff9a8f;
  font-weight: 900;
}

.schedule-disclaimer {
  margin-top: 14px;
  padding: 18px 20px;
  background: rgba(215, 173, 69, 0.1);
  border: 1px solid rgba(215, 173, 69, 0.35);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.schedule-disclaimer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-disclaimer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.schedule-disclaimer p + p {
  margin-top: 8px;
}

.event-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.event-notes strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
}

.ladies-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 110px) 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.ladies-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.ladies-copy p:not(.eyebrow),
.ladies-points span,
.ladies-event p {
  color: var(--muted);
  line-height: 1.65;
}

.ladies-event {
  margin: 28px 0 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(217, 73, 130, 0.24), transparent 66%),
    var(--panel);
  border: 1px solid rgba(217, 73, 130, 0.38);
  border-radius: 8px;
}

.ladies-event span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ladies-event strong {
  display: block;
  margin: 10px 0;
  font-size: 1.45rem;
}

.ladies-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ladies-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ladies-points div {
  padding: 18px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ladies-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
}

.results-section {
  border-top: 1px solid var(--line);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.results-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(215, 173, 69, 0.12), transparent 62%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.results-card::after {
  content: "£";
  position: absolute;
  right: 20px;
  top: 8px;
  color: rgba(215, 173, 69, 0.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  line-height: 1;
}

.results-card.primary-result {
  background:
    linear-gradient(135deg, rgba(167, 44, 42, 0.38), transparent 58%),
    var(--panel);
}

.results-card span,
.results-card h3,
.results-card p {
  position: relative;
  z-index: 1;
}

.results-card span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.results-card h3 {
  margin: 12px 0;
}

.results-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.media-section {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  background: #100d0a;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.media-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.media-card img,
.media-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #000;
}

.media-card img[src$="trophy-2026-polished.jpg"] {
  object-fit: contain;
  padding: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(215, 173, 69, 0.2), transparent 38%),
    #080807;
}

.media-card div {
  padding: 18px;
}

.social-section {
  border-bottom: 1px solid var(--line);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.social-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: linear-gradient(135deg, var(--accent), transparent 62%);
}

.social-card span,
.social-card strong,
.social-card p {
  position: relative;
}

.social-card span {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.18vw, 1.25rem);
  line-height: 1.2;
  white-space: nowrap;
}

.social-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.social-card.facebook {
  --accent: #3569d4;
}

.social-card.instagram {
  --accent: #d94982;
}

.social-card.whatsapp {
  --accent: #20c363;
}

.social-card.whatsapp-channel {
  --accent: #26d366;
}

.social-card.youtube {
  --accent: #e33838;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-grid a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.news-grid time {
  margin-bottom: 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owners-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.owner-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
}

.owners-copy article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.partner-section {
  border-top: 1px solid var(--line);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.partner-grid article {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(215, 173, 69, 0.1), transparent 56%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.partner-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.partner-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 24px;
  background: rgba(164, 44, 42, 0.18);
  border: 1px solid rgba(215, 173, 69, 0.28);
  border-radius: 8px;
}

.partner-cta strong {
  font-size: 1.15rem;
}

.hiring-section {
  border-top: 1px solid var(--line);
}

.hiring-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hiring-grid article {
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(164, 44, 42, 0.18), transparent 58%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hiring-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hiring-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.hiring-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 24px;
  background: rgba(215, 173, 69, 0.12);
  border: 1px solid rgba(215, 173, 69, 0.32);
  border-radius: 8px;
}

.hiring-cta strong {
  font-size: 1.15rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none;
}

.hiring-modal {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: clamp(24px, 5vw, 38px);
  background:
    linear-gradient(135deg, rgba(215, 173, 69, 0.12), transparent 52%),
    #0d0b09;
  border: 1px solid rgba(215, 173, 69, 0.38);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.hiring-modal h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.hiring-modal p,
.hiring-modal li {
  color: var(--muted);
  line-height: 1.6;
}

.hiring-modal ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.modal-contact {
  margin-top: 18px;
  font-weight: 800;
}

.modal-contact a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.join-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.join-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.join-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.join-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.join-form .check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
}

.join-form .check input {
  width: 18px;
  min-height: 18px;
}

.hidden-field {
  display: none;
}

.join-form .check a,
.legal-page a,
.footer-legal a {
  color: var(--gold-bright);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-header {
  position: sticky;
}

.legal-page {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 80px;
}

.legal-page h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.legal-page h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-page p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1.35rem;
}

.legal-page li + li {
  margin-top: 10px;
}

.legal-page h3 {
  margin-top: 26px;
}

.legal-intro {
  max-width: 720px;
  font-size: 1.15rem;
}

.legal-note {
  padding: 18px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.success-page {
  min-height: 100vh;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 80px 0;
}

.success-page img {
  width: 180px;
}

.success-page h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.success-page p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px clamp(18px, 4vw, 46px);
  background: #050504;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer > img {
  width: 120px;
}

.site-footer p {
  margin: 0 0 6px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-socials a {
  color: var(--gold-bright);
  font-weight: 800;
}

.safer-gambling {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.safer-gambling img {
  max-width: 116px;
  max-height: 34px;
  object-fit: contain;
}

.mobile-quickbar {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav,
  .header-action {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open .main-nav {
    position: absolute;
    inset: 76px 18px auto;
    display: grid;
    gap: 0;
    padding: 8px;
    background: #0d0b09;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .main-nav a {
    padding: 14px;
  }

  .event-banner {
    grid-template-columns: 1fr;
  }

  .event-banner-label {
    min-height: 42px;
    justify-items: start;
    padding: 0 14px;
  }

  .event-banner-track {
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 76vw);
    grid-template-columns: none;
    padding-bottom: 4px;
  }

    .hero-stats,
    .countdown,
    .live-head,
    .live-layout,
    .live-feed,
    .venue-grid,
  .event-grid,
  .tools-grid,
  .dates-list,
  .season-grid,
  .venue-record,
  .history-grid,
  .event-notes,
  .ladies-section,
  .ladies-points,
  .results-grid,
  .media-grid,
  .social-grid,
  .news-grid,
  .owners-section,
  .partner-grid,
  .hiring-grid,
  .join-section,
  .join-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .live-actions {
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .feature-card {
    grid-row: auto;
  }

  .next-event h2 {
    font-size: clamp(2.5rem, 10vw, 4.6rem);
  }

  .feature-card img {
    aspect-ratio: 4 / 3;
    object-position: center center;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .structure-notes {
    grid-template-columns: 1fr;
  }

  .structure-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 10px;
    font-size: 0.9rem;
  }

  .table-row span {
    overflow-wrap: anywhere;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .spec-list {
    margin-top: 150px;
  }

  .ladies-points {
    grid-column: auto;
  }

  .notice-band,
  .safer-gambling {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 66px;
  }

  .brand img {
    width: 118px;
  }

  h1 {
    font-size: 3.45rem;
  }

  .hero-inner {
    padding-bottom: 42px;
  }

  .next-event h2 {
    font-size: clamp(2.4rem, 14vw, 3.8rem);
  }

  .feature-card img {
    aspect-ratio: 1 / 1;
    object-position: center center;
  }

  .countdown {
    gap: 6px;
  }

  .countdown div {
    min-height: 64px;
  }

  .live-feature {
    min-height: 260px;
    padding: 20px;
  }

  .live-update {
    min-height: 0;
  }

  .mobile-quickbar {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 22;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 7px;
    background: rgba(8, 8, 7, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    backdrop-filter: blur(16px);
  }

  .mobile-quickbar a {
    display: grid;
    place-items: center;
    min-height: 42px;
    color: var(--gold-bright);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .countdown strong {
    font-size: 1.25rem;
  }

  .flight-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .structure-row {
    grid-template-columns: 0.7fr 1fr 1fr 1fr 1fr;
    gap: 5px;
    padding: 9px 7px;
    font-size: 0.78rem;
  }
}
