:root {
  color-scheme: only light;
  --ink: #091126;
  --ink-2: #121b38;
  --paper: #f8faff;
  --white: #ffffff;
  --blue: #1769ff;
  --blue-2: #42b8ff;
  --orange: #ff7417;
  --orange-2: #ff9f2f;
  --purple: #7b3cff;
  --purple-2: #b36bff;
  --gold: #ffd84d;
  --red: #ff3d5f;
  --green: #1dbf73;
  --muted: #66708a;
  --line: #dbe2f2;
  --shadow: 0 18px 50px rgba(16, 28, 65, .14);
  --shadow-sm: 0 10px 30px rgba(16, 28, 65, .10);
  --radius: 24px;
  --radius-sm: 16px;
  --shell: min(1180px, calc(100% - 32px));
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(23,105,255,.08), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(123,60,255,.07), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 84px 0; position: relative; }
.section-tight { padding: 58px 0; }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(23,105,255,.25), transparent 30rem),
    radial-gradient(circle at 90% 50%, rgba(123,60,255,.20), transparent 32rem),
    linear-gradient(135deg, #091126 0%, #101a3a 55%, #180f38 100%);
}
.section-orange {
  color: #261305;
  background:
    radial-gradient(circle at 85% 0%, rgba(255,255,255,.5), transparent 22rem),
    linear-gradient(135deg, #ffd24b, #ff8a20 48%, #ff6a1a 100%);
}
.section-purple {
  color: white;
  background: linear-gradient(135deg, #20104f, #5123a9 48%, #1769ff 100%);
}
.section-white { background: rgba(255,255,255,.86); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 900;
  font-size: .79rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-dark .eyebrow, .page-hero .eyebrow { color: #9ed9ff; }
.eyebrow::before {
  content: "";
  width: 26px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

h1, h2, h3, h4 { line-height: 1.08; margin: 0 0 16px; letter-spacing: -.03em; }
h1 { font-size: clamp(2.7rem, 7vw, 6.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.7rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.28rem); color: var(--muted); max-width: 68ch; }
.section-dark .lead, .page-hero .lead { color: rgba(255,255,255,.82); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.max-720 { max-width: 720px; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 12px 16px;
  background: white;
  color: var(--ink);
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Header */
.urgency-banner {
  color: #291400;
  background: linear-gradient(90deg, var(--gold), #ffed90 48%, var(--orange-2));
  border-bottom: 1px solid rgba(75,40,0,.15);
}
.urgency-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  font-size: .87rem;
  text-align: center;
}
.urgency-inner small { opacity: .72; }
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,61,95,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(255,61,95,0); } 100% { box-shadow: 0 0 0 0 rgba(255,61,95,0); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248,250,255,.91);
  border-bottom: 1px solid rgba(204,214,237,.82);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; min-width: max-content; }
.brand img { width: 48px; height: 48px; border-radius: 13px; box-shadow: 0 7px 22px rgba(23,105,255,.22); }
.brand span { display: grid; line-height: .95; }
.brand strong { font-size: .78rem; letter-spacing: .18em; }
.brand em { font-style: normal; font-size: 1.36rem; font-weight: 950; color: var(--orange); letter-spacing: .03em; }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 11px 10px; border-radius: 12px; text-decoration: none; font-size: .9rem; font-weight: 800; color: #39425d; }
.nav-link:hover, .nav-link.is-active { color: var(--blue); background: #eaf1ff; }
.nav-register { margin-left: 6px; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 14px; background: #eaf1ff; padding: 12px; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 3px; margin: 4px 0; border-radius: 10px; background: var(--ink); }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 21px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #2754df);
  box-shadow: 0 10px 28px rgba(23,105,255,.25);
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(23,105,255,.32); filter: brightness(1.05); }
.button:active { transform: translateY(0); }
.button-orange { color: #261303; background: linear-gradient(135deg, var(--gold), var(--orange)); box-shadow: 0 10px 28px rgba(255,116,23,.26); }
.button-purple { background: linear-gradient(135deg, var(--purple), #4c33d9); box-shadow: 0 10px 28px rgba(123,60,255,.26); }
.button-ghost { color: var(--ink); background: white; border: 2px solid var(--line); box-shadow: none; }
.button-light { color: var(--ink); background: white; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.button-small { min-height: 42px; padding: 9px 15px; border-radius: 12px; font-size: .9rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button.is-disabled, .button[aria-disabled="true"] { pointer-events: none; opacity: .55; filter: grayscale(.4); box-shadow: none; }

/* Hero */
.home-hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  color: white;
  background: #090f22;
}
.hero-split-images { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; }
.hero-image-pane { position: relative; overflow: hidden; }
.hero-image-pane img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-pane:first-child img { object-position: center 40%; }
.hero-image-pane:last-child img { object-position: center 40%; }
.hero-image-pane::after { content: ""; position: absolute; inset: 0; }
.hero-image-pane.gaming::after { background: linear-gradient(90deg, rgba(7,12,31,.72), rgba(44,24,108,.40)); }
.hero-image-pane.hoops::after { background: linear-gradient(90deg, rgba(9,17,38,.28), rgba(15,7,20,.72)); }
.home-hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,9,24,.38), rgba(5,9,24,.10) 40%, rgba(5,9,24,.94) 100%),
    radial-gradient(circle at 50% 18%, transparent 0 24%, rgba(6,10,27,.46) 68%);
}
.home-hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  top: -10%;
  width: 5px;
  height: 120%;
  transform: rotate(8deg);
  background: linear-gradient(180deg, transparent, rgba(255,216,77,.8), transparent);
  box-shadow: 0 0 36px rgba(255,216,77,.85);
}
.hero-content { position: relative; z-index: 5; min-height: 760px; display: grid; align-content: center; justify-items: center; text-align: center; padding: 90px 0 74px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.30); border-radius: 999px; background: rgba(8,13,32,.42); backdrop-filter: blur(12px); font-weight: 800; }
.hero-title { margin-top: 16px; text-shadow: 0 8px 40px rgba(0,0,0,.46); }
.hero-title span { display: block; color: var(--gold); font-size: .72em; }
.hero-details { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 8px 0 22px; }
.hero-detail { padding: 9px 13px; border-radius: 999px; background: rgba(8,13,32,.70); border: 1px solid rgba(255,255,255,.18); font-weight: 800; }
.prize-badge { display: inline-grid; place-items: center; min-width: 235px; padding: 16px 24px; border-radius: 22px; color: #2a1400; background: linear-gradient(135deg, #fff5a8, var(--gold), var(--orange)); box-shadow: 0 18px 60px rgba(255,177,30,.34); transform: rotate(-1deg); }
.prize-badge strong { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1; }
.prize-badge span { font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.hero-actions { margin-top: 24px; justify-content: center; }
.hero-secondary-actions { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.hero-secondary-actions a { color: white; font-weight: 800; text-underline-offset: 4px; }

.countdown-wrap { margin-top: 34px; width: min(720px, 100%); }
.countdown-label { margin-bottom: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; color: #d6e5ff; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.countdown-box { padding: 13px 8px; border-radius: 16px; background: rgba(7,12,30,.72); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(12px); }
.countdown-box b { display: block; color: var(--gold); font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1; }
.countdown-box span { font-size: .73rem; text-transform: uppercase; letter-spacing: .08em; color: #dfe7fb; }
.countdown-live { padding: 18px; border-radius: 16px; background: var(--gold); color: var(--ink); font-size: 1.35rem; font-weight: 950; }

.page-hero { position: relative; min-height: 570px; overflow: hidden; display: grid; align-items: end; color: white; background: #0a1127; }
.page-hero picture, .page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; z-index: 1; inset: 0; }
.page-hero.gaming-hero::before { background: linear-gradient(90deg, rgba(9,15,42,.93) 0%, rgba(26,25,83,.72) 46%, rgba(57,23,114,.35) 100%), linear-gradient(0deg, rgba(8,13,33,.95), transparent 65%); }
.page-hero.basketball-hero::before { background: linear-gradient(90deg, rgba(15,8,5,.90) 0%, rgba(84,28,7,.62) 50%, rgba(255,116,23,.16) 100%), linear-gradient(0deg, rgba(15,8,5,.94), transparent 66%); }
.page-hero-content { position: relative; z-index: 2; padding: 105px 0 66px; max-width: 760px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.8rem); text-shadow: 0 10px 40px rgba(0,0,0,.42); }
.hero-stat-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 24px; }
.hero-stat { min-width: 145px; padding: 13px 15px; border-radius: 15px; background: rgba(8,13,33,.64); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px); }
.hero-stat span { display: block; color: rgba(255,255,255,.7); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.hero-stat b { font-size: 1.3rem; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 999px; font-weight: 900; font-size: .82rem; }
.status-open { color: #05331e; background: #aaf5d1; }
.status-closed { color: #4f0714; background: #ffc0ca; }

/* Cards and grids */
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading > div { max-width: 760px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.card-pad { padding: 26px; }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; margin-bottom: 16px; color: white; background: linear-gradient(135deg, var(--blue), var(--purple)); font-size: 1.45rem; font-weight: 900; box-shadow: 0 9px 22px rgba(23,105,255,.22); }
.card-icon.orange { color: #2b1600; background: linear-gradient(135deg, var(--gold), var(--orange)); }
.card-icon.purple { background: linear-gradient(135deg, var(--purple), #a055ff); }
.card-icon.green { background: linear-gradient(135deg, #17b66c, #5adea3); }
.event-card { min-height: 360px; position: relative; color: white; display: flex; align-items: end; border: 0; }
.event-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,9,24,.96), rgba(5,9,24,.16) 75%); }
.event-card-content { position: relative; z-index: 1; padding: 28px; }
.event-card-content p { color: rgba(255,255,255,.78); }
.event-card .tag { margin-bottom: 10px; }
.tag { display: inline-flex; padding: 6px 9px; border-radius: 999px; color: #241300; background: var(--gold); font-size: .73rem; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }

.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; box-shadow: var(--shadow-sm); }
.stat-block { padding: 25px 18px; text-align: center; border-right: 1px solid var(--line); }
.stat-block:last-child { border-right: 0; }
.stat-block strong { display: block; color: var(--blue); font-size: clamp(1.7rem, 3vw, 2.65rem); line-height: 1; }
.stat-block span { display: block; margin-top: 7px; color: var(--muted); font-weight: 800; }
.section-dark .stats-strip { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.section-dark .stat-block { border-color: rgba(255,255,255,.14); }
.section-dark .stat-block strong { color: var(--gold); }
.section-dark .stat-block span { color: rgba(255,255,255,.72); }

.timeline { counter-reset: timeline; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline-step { counter-increment: timeline; position: relative; padding: 25px 22px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow-sm); }
.timeline-step::before { content: counter(timeline); display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 15px; border-radius: 12px; color: white; background: linear-gradient(135deg, var(--blue), var(--purple)); font-weight: 950; }
.timeline-step::after { content: ""; position: absolute; top: 43px; left: calc(100% + 1px); width: 18px; height: 3px; background: linear-gradient(90deg, var(--blue), var(--purple)); }
.timeline-step:last-child::after { display: none; }
.timeline-step h3 { font-size: 1.15rem; }
.timeline-step p { color: var(--muted); font-size: .95rem; }

.notice { padding: 20px 22px; border-radius: 18px; border: 1px solid #ffd686; background: #fff7db; color: #4b2a00; }
.notice strong { color: #281500; }
.notice-danger { border-color: #ffbdc8; background: #fff0f3; color: #5a1320; }
.notice-info { border-color: #b9d3ff; background: #edf4ff; color: #0c2d69; }
.notice-dark { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); }
.policy-highlight { font-size: clamp(1.15rem, 2.4vw, 1.55rem); font-weight: 900; line-height: 1.4; }

/* Payment */
.payment-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: stretch; }
.payment-panel { padding: 30px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); border: 1px solid var(--line); }
.payment-option { display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items: center; padding: 16px; margin-top: 13px; border: 1px solid var(--line); border-radius: 17px; background: #fbfcff; }
.payment-logo { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; color: white; font-size: 1.3rem; font-weight: 950; }
.payment-logo.cash { background: #00c244; }
.payment-logo.venmo { background: #008cff; }
.payment-option strong { display: block; }
.payment-option span { color: var(--muted); }
.copy-button { min-height: 42px; padding: 8px 13px; border-radius: 11px; border: 1px solid var(--line); color: var(--ink); background: white; font-weight: 850; }
.payment-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.payment-steps { padding: 30px; border-radius: var(--radius); color: white; background: linear-gradient(145deg, #111c3e, #281361); box-shadow: var(--shadow); }
.payment-steps ol { margin: 18px 0 0; padding-left: 1.4rem; }
.payment-steps li { padding: 5px 0; }

/* Lists */
.check-list, .rule-list { list-style: none; padding: 0; margin: 0; }
.check-list li, .rule-list li { position: relative; padding: 7px 0 7px 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 7px; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: white; background: var(--green); font-size: .72rem; font-weight: 950; }
.rule-list li::before { content: "•"; position: absolute; left: 8px; color: var(--orange); font-size: 1.35rem; line-height: 1.1; }
.quick-rule-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.quick-rule { padding: 19px 20px; border: 1px solid var(--line); border-radius: 17px; background: white; }
.quick-rule strong { display: block; margin-bottom: 4px; }
.quick-rule span { color: var(--muted); }

/* Buyback */
.buyback-banner { position: relative; overflow: hidden; padding: 34px; border-radius: 28px; color: white; background: linear-gradient(135deg, #5522bc, #1769ff 55%, #00a8e8); box-shadow: 0 22px 60px rgba(66,49,187,.28); }
.buyback-banner::after { content: none; }
.buyback-banner > * { position: relative; z-index: 1; }
.buyback-quote { margin: 8px 0 24px; max-width: 900px; color: var(--gold); font-size: clamp(1.55rem, 3vw, 2.6rem); font-weight: 950; line-height: 1.18; }
.buyback-rules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.buyback-rule { padding: 14px 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(7,12,30,.24); }

/* Side contests */
.contest-card { position: relative; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.contest-card::before { content: ""; display: block; width: 48px; height: 5px; margin-bottom: 20px; border-radius: 99px; background: linear-gradient(90deg, var(--orange), var(--gold)); }
.contest-price { color: var(--orange); font-size: 1.5rem; font-weight: 950; }
.all-access { display: grid; grid-template-columns: 1.2fr auto; gap: 24px; align-items: center; margin-top: 24px; padding: 28px; border-radius: 24px; color: white; background: linear-gradient(135deg, #26145e, #6d35d7 58%, #1769ff); box-shadow: var(--shadow); }
.all-access-price { color: var(--gold); font-size: clamp(1.2rem,2vw,1.7rem); font-weight: 950; white-space: nowrap; }

/* Food */
.food-hero { padding: 76px 0 52px; background: linear-gradient(135deg, #fff7e7, #fffdf8 50%, #f7eeff); overflow: hidden; }
.food-hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: center; }
.food-hero h1 { color: #3d1605; }
.food-collage { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 210px 210px; gap: 12px; transform: rotate(1deg); }
.food-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-sm); }
.food-collage img:first-child { grid-row: 1 / 3; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.menu-card { display: grid; grid-template-columns: minmax(220px, .9fr) 1.1fr; min-height: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.menu-card img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-body { padding: 25px; align-self: center; }
.menu-card h3 { color: #3c1b0d; }
.menu-card .availability { display: inline-flex; margin-bottom: 11px; padding: 5px 9px; border-radius: 999px; color: #4b2800; background: #ffedb2; font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.menu-card ul { padding-left: 1.1rem; color: var(--muted); }
.menu-card .upgrade { margin-top: 14px; padding: 12px; border-radius: 12px; background: #fff4e9; color: #6b2f02; font-weight: 850; }
.menu-price-note { padding: 18px 22px; margin-bottom: 26px; border-radius: 16px; background: #fff2cb; border: 1px solid #ffd678; font-weight: 850; }
.preorder-section { background: linear-gradient(180deg, #fffaf4, #f6f0ff); }
.pink-moon { position: relative; overflow: hidden; color: white; background: linear-gradient(135deg, #150f1f, #321334 50%, #6a184c); }
.pink-moon::before { content: ""; position: absolute; width: 410px; height: 410px; top: -140px; right: 6%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffddf0, #ee74bd 45%, #9c2b72 75%); box-shadow: 0 0 70px rgba(239,105,184,.35); opacity: .84; }
.pink-moon .shell { position: relative; z-index: 1; }
.pink-moon-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 36px; align-items: start; }
.catering-types { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0; }
.catering-types span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); font-weight: 800; font-size: .86rem; }

/* Forms */
.form-shell { scroll-margin-top: 130px; max-width: 940px; margin-inline: auto; padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.section-dark .form-shell, .pink-moon .form-shell { color: var(--ink); }
.form-intro { margin-bottom: 24px; }
.form-progress { margin: 22px 0 30px; }
.progress-meta { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-weight: 800; font-size: .88rem; }
.progress-track { height: 10px; margin-top: 8px; overflow: hidden; border-radius: 99px; background: #e8edf8; }
.progress-fill { width: 33.333%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--purple), var(--orange)); transition: width .25s ease; }
.form-step { scroll-margin-top: 125px; }
.form-step > h2, .form-step > h3 { margin-bottom: 22px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.field-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.field { display: grid; gap: 7px; margin-bottom: 17px; }
.field label, .field > span { font-weight: 850; }
.field small { color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #bec8df;
  border-radius: 12px;
  color: var(--ink);
  background: #fcfdff;
}
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23,105,255,.10); outline: 0; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; }
.choice-card { display: flex; align-items: flex-start; gap: 11px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fbfcff; }
.choice-card input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue); }
.choice-card strong { display: block; }
.choice-card span { color: var(--muted); font-size: .9rem; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.form-actions .right { margin-left: auto; }
.form-note { padding: 15px 17px; border-radius: 14px; color: #542e00; background: #fff4d0; border: 1px solid #ffd881; font-size: .92rem; }
.form-closed-message { padding: 15px; border-radius: 14px; color: #5a1320; background: #fff0f3; border: 1px solid #ffbdc8; font-weight: 900; }
.honey { position: absolute; left: -9999px; }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 900px; margin-inline: auto; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: white; box-shadow: 0 6px 18px rgba(16,28,65,.05); }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 21px; border: 0; color: var(--ink); background: transparent; text-align: left; font-weight: 900; }
.accordion-trigger::after { content: "+"; flex: 0 0 auto; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: white; background: var(--blue); font-size: 1.2rem; }
.accordion-trigger[aria-expanded="true"]::after { content: "–"; background: var(--purple); }
.accordion-panel { padding: 0 21px 20px; color: var(--muted); }

/* Brackets */
.bracket-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.bracket-card { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.bracket-card .bracket-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; color: white; background: linear-gradient(135deg, var(--blue), var(--purple)); font-size: 1.4rem; font-weight: 950; }

/* Rules */
.rules-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.rules-nav { position: sticky; top: 128px; padding: 20px; border-radius: 19px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.rules-nav h2 { font-size: 1rem; letter-spacing: .02em; }
.rules-nav a { display: block; padding: 8px 10px; border-radius: 9px; color: var(--muted); text-decoration: none; font-weight: 800; font-size: .9rem; }
.rules-nav a:hover { color: var(--blue); background: #edf3ff; }
.rules-content { display: grid; gap: 18px; }
.rule-section { scroll-margin-top: 130px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.rule-section h2 { font-size: clamp(1.5rem, 2.7vw, 2.1rem); }

/* Confirmation & 404 */
.confirmation-hero, .not-found { min-height: 70vh; display: grid; place-items: center; padding: 80px 0; text-align: center; color: white; background:
  radial-gradient(circle at 20% 20%, rgba(23,105,255,.35), transparent 28rem),
  radial-gradient(circle at 85% 70%, rgba(123,60,255,.35), transparent 28rem),
  linear-gradient(135deg, #081126, #141d47 55%, #281249);
}
.confirmation-card { width: min(860px, 100%); padding: 38px; border-radius: 30px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(15px); box-shadow: 0 25px 70px rgba(0,0,0,.28); }
.confirmation-icon { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 24px; color: #251600; background: linear-gradient(135deg, var(--gold), var(--orange)); font-size: 2rem; font-weight: 1000; }
.confirmation-steps { counter-reset: confirm; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 28px 0; text-align: left; }
.confirmation-step { counter-increment: confirm; padding: 16px; border-radius: 15px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.confirmation-step::before { content: counter(confirm); display: grid; place-items: center; width: 30px; height: 30px; margin-bottom: 9px; border-radius: 9px; color: #251600; background: var(--gold); font-weight: 950; }
.not-found .big-404 { color: var(--gold); font-size: clamp(6rem, 20vw, 13rem); line-height: .8; font-weight: 1000; text-shadow: 0 15px 60px rgba(255,216,77,.25); }

/* Footer */
.site-footer { color: rgba(255,255,255,.80); background: #070d20; padding: 58px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr .8fr 1fr; gap: 28px; }
.footer-grid h2 { color: white; font-size: 1rem; letter-spacing: .03em; }
.footer-grid a { display: block; margin: 5px 0; color: rgba(255,255,255,.80); text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }
.brand-footer { margin-bottom: 15px; color: white; }
.footer-brand p { max-width: 36ch; }
.footer-payment { margin-top: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 15px; margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .86rem; }

.floating-register { display: none; }

/* Responsive */
@media (max-width: 1040px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    z-index: 90;
    top: calc(38px + var(--header-height));
    right: 0;
    bottom: 0;
    width: min(390px, 90vw);
    padding: 24px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    background: white;
    box-shadow: -20px 20px 50px rgba(9,17,38,.18);
    transform: translateX(105%);
    transition: transform .24s ease;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .nav-link { padding: 14px 15px; }
  .nav-register { margin: 8px 0 0; }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .timeline-step:nth-child(2)::after { display: none; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stat-block:nth-child(2) { border-right: 0; }
  .stat-block:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-dark .stat-block:nth-child(-n+2) { border-bottom-color: rgba(255,255,255,.14); }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 24px, 1180px); }
  .section { padding: 64px 0; }
  .home-hero, .hero-content { min-height: 720px; }
  .hero-split-images { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .home-hero::after { left: -10%; top: 50%; width: 120%; height: 4px; transform: rotate(-3deg); }
  .hero-image-pane.gaming::after { background: linear-gradient(0deg, rgba(8,13,32,.56), rgba(44,24,108,.28)); }
  .hero-image-pane.hoops::after { background: linear-gradient(0deg, rgba(15,7,20,.75), rgba(255,116,23,.12)); }
  .page-hero { min-height: 590px; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading .button { margin-top: 10px; }
  .payment-grid, .food-hero-grid, .pink-moon-grid { grid-template-columns: 1fr; }
  .food-collage { order: -1; grid-template-rows: 170px 170px; }
  .menu-card { grid-template-columns: 240px 1fr; }
  .rules-layout { grid-template-columns: 1fr; }
  .rules-nav { position: static; display: none; }
  .confirmation-steps { grid-template-columns: repeat(2,1fr); }
  .field-grid, .field-grid-3 { grid-template-columns: 1fr; gap: 0; }
  .all-access { grid-template-columns: 1fr; }
  .buyback-rules { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { padding-bottom: 74px; }
  .urgency-inner { padding: 6px 0; font-size: .78rem; }
  .urgency-divider, .urgency-inner small { display: none; }
  .header-inner { min-height: 68px; }
  .brand img { width: 42px; height: 42px; }
  .brand em { font-size: 1.16rem; }
  .primary-nav { top: 72px; }
  .section { padding: 52px 0; }
  .home-hero, .hero-content { min-height: 690px; }
  .hero-content { padding-top: 70px; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.9rem); }
  .hero-details { gap: 7px; }
  .hero-detail { width: 100%; border-radius: 12px; padding: 8px 10px; }
  .prize-badge { min-width: 215px; }
  .hero-actions .button, .button-row.mobile-stack .button { width: 100%; }
  .countdown { gap: 6px; }
  .countdown-box { padding: 11px 3px; }
  .countdown-box span { font-size: .62rem; }
  .page-hero { min-height: 620px; }
  .page-hero-content { padding: 82px 0 44px; }
  .hero-stat { min-width: calc(50% - 5px); }
  .cards-4, .timeline, .stats-strip, .bracket-grid { grid-template-columns: 1fr; }
  .timeline-step::after { display: none; }
  .stat-block, .stat-block:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-block:last-child { border-bottom: 0; }
  .section-dark .stat-block { border-bottom-color: rgba(255,255,255,.14); }
  .quick-rule-grid, .choice-grid { grid-template-columns: 1fr; }
  .payment-panel, .payment-steps, .form-shell, .buyback-banner, .confirmation-card { padding: 22px; }
  .payment-option { grid-template-columns: 48px 1fr; }
  .payment-option .copy-button { grid-column: 1 / -1; width: 100%; }
  .food-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px; }
  .food-collage img:first-child { grid-row: 1 / 3; }
  .menu-card { grid-template-columns: 1fr; }
  .menu-card img { height: 235px; }
  .confirmation-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .form-actions { flex-wrap: wrap; }
  .form-actions .button { flex: 1 1 140px; }
  .floating-register {
    position: fixed;
    z-index: 100;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 18px;
    border-radius: 16px;
    color: #241300;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 16px 38px rgba(255,116,23,.38);
    text-decoration: none;
    font-weight: 950;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.confirmation-card h1 { font-size: clamp(2.25rem, 5.8vw, 4.5rem); }
.rule-section a { color: var(--blue); font-weight: 800; }
@media (max-width: 600px) {
  .confirmation-card h1 { font-size: clamp(2rem, 10vw, 3.15rem); }
}
html, body { overflow-x: hidden; }

/* Display-protection pass: preserve the intended event palette in browser forced-color modes. */
.site-header, .urgency-bar, .home-hero, .page-hero, .section-purple, .section-orange, .section-dark,
.button, .prize-badge, .buyback-banner, .payment-panel, .all-access, .pink-moon {
  forced-color-adjust: none;
}
.buyback-banner { min-height: 0; }
