:root {
  --bg: #090304;
  --panel: #160608;
  --panel-2: #23090b;
  --ink: #fff7df;
  --muted: #d6bfa0;
  --soft: #95765c;
  --red: #c8171f;
  --red-2: #7b0c12;
  --gold: #f4c45b;
  --gold-2: #9f6a24;
  --line: rgba(244, 196, 91, .26);
  --glow: rgba(244, 196, 91, .22);
  --green: #4bd4a2;
  --max: 1180px;
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 8%, rgba(200, 23, 31, .28), transparent 32rem),
    radial-gradient(circle at 86% 0%, rgba(244, 196, 91, .16), transparent 28rem),
    linear-gradient(180deg, #130305 0%, var(--bg) 42%, #040202 100%);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .7), transparent 75%);
  z-index: -1;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(244, 196, 91, .18);
  background: rgba(9, 3, 4, .82);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--line), 0 0 24px rgba(244, 196, 91, .2);
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: relative;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 5px;
}

.nav-toggle.is-open span {
  transform: rotate(45deg);
}

.nav-toggle.is-open span::before {
  transform: translateY(7px) rotate(90deg);
}

.nav-toggle.is-open span::after {
  opacity: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .92rem;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(244, 196, 91, .09);
  box-shadow: inset 0 0 0 1px rgba(244, 196, 91, .18);
}

.hero {
  width: min(1380px, calc(100% - 32px));
  margin: 26px auto 0;
  padding: clamp(26px, 5vw, 58px);
  min-height: 640px;
  display: grid;
  grid: auto / minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  border: 1px solid rgba(244, 196, 91, .24);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(9, 3, 4, .88), rgba(52, 8, 10, .76)),
    radial-gradient(circle at 80% 40%, rgba(244, 196, 91, .2), transparent 28rem);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .5), inset 0 0 0 1px rgba(255, 255, 255, .04);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
.page-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.35rem, 5.4vw, 5.35rem);
  line-height: .96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--gold);
  text-shadow: 0 0 28px rgba(244, 196, 91, .26);
}

.lead {
  margin: 24px 0 0;
  max-width: 690px;
  color: #ecd9bd;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(244, 196, 91, .36);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 196, 91, .72);
}

.btn.primary {
  color: #240704;
  background: linear-gradient(180deg, #ffe19a, #f4b235);
  box-shadow: 0 12px 34px rgba(244, 178, 53, .18);
}

.btn.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .04);
}

.market-strip {
  display: grid;
  grid: auto / repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.market-strip div {
  min-height: 84px;
  padding: 13px;
  border: 1px solid rgba(244, 196, 91, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.market-strip b {
  display: block;
  color: var(--gold);
  font-size: .95rem;
}

.market-strip small {
  color: var(--muted);
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 6% 0 0 10%;
  background: radial-gradient(circle, rgba(244, 196, 91, .45), transparent 62%);
  filter: blur(28px);
  z-index: -1;
}

.tilted-frame {
  border: 1px solid rgba(244, 196, 91, .35);
  border-radius: 8px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-5deg) rotateX(1deg);
  box-shadow: 0 34px 70px rgba(0, 0, 0, .46), 0 0 0 8px rgba(255, 255, 255, .025);
}

.tilted-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(310px, 72%);
  padding: 16px;
  border: 1px solid rgba(75, 212, 162, .42);
  border-radius: 8px;
  background: rgba(7, 28, 22, .86);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.floating-note b {
  color: var(--green);
}

.floating-note p {
  margin: 4px 0 0;
  color: #cfeadd;
  font-size: .92rem;
}

main {
  position: relative;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 0;
}

.section-head {
  display: grid;
  grid: auto / minmax(0, .7fr) minmax(260px, .3fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin: 7px 0 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.section-head p,
.muted {
  color: var(--muted);
}

.hero-copy,
.page-hero,
.article-panel,
.card,
.feature,
.rule-box,
.contact-card {
  overflow-wrap: anywhere;
}

.cards-3,
.cards-4,
.split-grid,
.policy-grid {
  display: grid;
  gap: 16px;
}

.cards-3 {
  grid: auto / repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid: auto / repeat(4, minmax(0, 1fr));
}

.card,
.feature,
.rule-box,
.contact-card,
.faq-item {
  border: 1px solid rgba(244, 196, 91, .2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .025));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.card:hover,
.feature:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 196, 91, .46);
  background: linear-gradient(180deg, rgba(244, 196, 91, .075), rgba(255, 255, 255, .025));
}

.card {
  padding: 22px;
}

.card .num {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #2a0906;
  background: var(--gold);
  font-weight: 900;
}

.card p,
.feature p,
.rule-box p,
.contact-card p {
  color: var(--muted);
}

.split-grid {
  grid: auto / minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #100405;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(9, 3, 4, .78);
  border: 1px solid rgba(244, 196, 91, .2);
  color: var(--muted);
  font-size: .88rem;
}

.feature-stack {
  display: grid;
  gap: 12px;
}

.feature {
  padding: 18px;
  display: grid;
  grid: auto / 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.feature strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: #240704;
  background: linear-gradient(180deg, #ffd978, #b87924);
  font-size: 1.25rem;
}

.odds-board {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(244, 196, 91, .24);
  border-radius: 8px;
  background: rgba(0, 0, 0, .2);
}

.odds-row {
  display: grid;
  grid: auto / 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
}

.odds-row b {
  color: var(--ink);
}

.odds-row span {
  color: var(--gold);
  font-weight: 900;
}

.warning-band {
  display: grid;
  grid: auto / minmax(0, 1.05fr) minmax(260px, .95fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(200, 23, 31, .38);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(200, 23, 31, .16), rgba(244, 196, 91, .06));
}

.rule-box {
  padding: 22px;
}

.rule-box strong {
  color: var(--gold);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #260704;
  background: var(--gold);
  flex: 0 0 auto;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 28px auto 0;
  padding: clamp(36px, 6vw, 70px);
  border: 1px solid rgba(244, 196, 91, .24);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(28, 5, 7, .92), rgba(8, 3, 4, .76)),
    radial-gradient(circle at 80% 20%, rgba(244, 196, 91, .14), transparent 24rem);
  overflow: hidden;
}

.page-hero p {
  max-width: 760px;
}

.page-layout {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) 0;
  display: grid;
  grid: auto / minmax(0, .72fr) minmax(280px, .28fr);
  gap: 22px;
  align-items: start;
}

.article-panel,
.side-panel {
  border: 1px solid rgba(244, 196, 91, .19);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.article-panel {
  padding: clamp(22px, 4vw, 38px);
}

.article-panel h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.article-panel h2:first-child {
  margin-top: 0;
}

.article-panel ul {
  margin: 12px 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.article-panel li {
  margin: 8px 0;
}

.side-panel {
  padding: 18px;
  position: sticky;
  top: 96px;
}

.side-panel img {
  border-radius: 8px;
  margin-bottom: 16px;
}

.side-panel a {
  display: block;
  padding: 11px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(244, 196, 91, .12);
}

.side-panel a:hover {
  color: var(--gold);
}

.policy-grid {
  grid: auto / repeat(2, minmax(0, 1fr));
}

.contact-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) 0;
  display: grid;
  grid: auto / .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  padding: 24px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
}

form {
  display: grid;
  gap: 12px;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid rgba(244, 196, 91, .24);
  border-radius: 8px;
  background: rgba(0, 0, 0, .25);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(244, 196, 91, .38);
  border-color: rgba(244, 196, 91, .72);
}

.site-footer {
  border-top: 1px solid rgba(244, 196, 91, .16);
  background: #060202;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid: auto / 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-size: .92rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.age-note {
  color: var(--soft);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(244, 196, 91, .22);
    border-radius: 8px;
    background: rgba(9, 3, 4, .96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero,
  .page-layout,
  .contact-grid,
  .split-grid,
  .warning-band {
    grid: auto / 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-head,
  .footer-inner {
    grid: auto / 1fr;
  }

  .cards-3,
  .cards-4,
  .policy-grid {
    grid: auto / repeat(2, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .section,
  .page-hero,
  .page-layout,
  .contact-grid,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .brand strong {
    font-size: .9rem;
  }

  .brand span {
    display: none;
  }

  .hero {
    width: min(100% - 24px, 1380px);
    padding: 24px;
  }

  h1,
  .page-hero h1 {
    font-size: 2rem;
    line-height: 1.06;
  }

  .lead {
    font-size: .98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .market-strip,
  .cards-3,
  .cards-4,
  .policy-grid {
    grid: auto / 1fr;
  }

  .feature {
    grid: auto / 1fr;
  }

  .feature strong {
    width: 46px;
    height: 46px;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .tilted-frame {
    transform: none;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
