
:root {
  --bg: #06090e;
  --bg-2: #0b1118;
  --surface: rgba(13, 20, 29, 0.82);
  --surface-2: rgba(18, 27, 39, 0.72);
  --line: rgba(165, 213, 225, 0.18);
  --line-hot: rgba(255, 64, 91, 0.36);
  --text: #f3f8fb;
  --muted: #a8bac8;
  --soft: #6f8494;
  --ruby: #ff365c;
  --ruby-2: #ff6e5c;
  --gold: #ffbf63;
  --mint: #39ffd4;
  --cyan: #78eaff;
  --violet: #a978ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  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;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 54, 92, 0.23), transparent 30%),
    radial-gradient(circle at 18% 12%, rgba(57, 255, 212, 0.12), transparent 25%),
    radial-gradient(circle at 52% 42%, rgba(255, 191, 99, 0.08), transparent 28%),
    linear-gradient(135deg, #05080c 0%, #091019 47%, #12080a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 75%);
  z-index: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--ruby), var(--gold), var(--mint));
  z-index: 100;
  box-shadow: 0 0 22px rgba(255, 54, 92, 0.7);
}

.site-header {
  width: min(calc(100% - 28px), 1220px);
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(151, 215, 226, 0.16);
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(5, 9, 14, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  position: sticky;
  top: 12px;
  z-index: 50;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
  background: rgba(4, 8, 13, 0.91);
  border-color: rgba(255, 91, 91, 0.28);
}

.brand-mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand-mark img {
  width: 198px;
  height: auto;
}

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

.primary-nav a,
.header-cta,
.btn,
.floating-cta,
.cookie-note button {
  border: 1px solid transparent;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.primary-nav a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ruby), var(--gold));
  color: #160609;
  box-shadow: 0 14px 38px rgba(255, 65, 86, .24);
  white-space: nowrap;
}

.header-cta:hover,
.btn:hover,
.floating-cta:hover,
.cookie-note button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-prism {
  width: min(calc(100% - 32px), var(--max));
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.4;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--ruby), var(--mint));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 22px;
  font-size: clamp(42px, 8.2vw, 92px);
  max-width: 9.8em;
}

.hero-paragraphs {
  margin-top: 26px;
  max-width: 720px;
}

p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16.5px;
}

.hero-paragraphs p {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.6vw, 18px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 999px;
}

.btn-hot {
  background: linear-gradient(135deg, var(--ruby), #ff7a4f 54%, var(--gold));
  color: #170709;
  box-shadow: 0 18px 48px rgba(255, 54, 92, .25);
}

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

.btn-ghost:hover {
  border-color: rgba(57, 255, 212, .38);
  background: rgba(57, 255, 212, .08);
}

.responsible-note {
  margin-top: 20px;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(255, 191, 99, .1), transparent);
  color: #cdd9e2;
  border-radius: 0 18px 18px 0;
}

.hero-stage {
  position: relative;
  min-height: 520px;
}

.poster-frame {
  position: relative;
  isolation: isolate;
  border-radius: 38px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 54, 92, .6), rgba(255, 191, 99, .34) 46%, rgba(57, 255, 212, .45)),
    rgba(255, 255, 255, .04);
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: -32px;
  z-index: -1;
  background: radial-gradient(circle at 65% 20%, rgba(255, 54, 92, .24), transparent 36%), radial-gradient(circle at 25% 92%, rgba(57, 255, 212, .18), transparent 34%);
  filter: blur(18px);
}

.poster-frame img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  border-radius: 30px;
}

.signal-stack {
  position: absolute;
  right: -8px;
  bottom: 28px;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(8, 12, 18, .78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.signal-stack span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #effcff;
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
}

.signal-stack span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px var(--mint);
}

.intro-media,
.route-rail,
.control-grid,
.campaign-tabs,
.content-body,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-left: auto;
  margin-right: auto;
}

.intro-media {
  margin-top: 38px;
}

.intro-media figure,
.media-panel {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.intro-media figcaption,
.media-panel figcaption {
  padding: 16px 20px 18px;
  color: #c4d2dd;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 54, 92, .12), rgba(57, 255, 212, .06));
  line-height: 1.55;
}

.route-rail {
  margin-top: 32px;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(9, 15, 22, .72);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: center;
  backdrop-filter: blur(18px);
}

.rail-label {
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}

.rail-links {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 191, 99, .7) transparent;
}

.rail-links a {
  flex: 0 0 auto;
  color: #dbe9ef;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .04);
  font-size: 14px;
}

.rail-links a:hover {
  border-color: rgba(57, 255, 212, .38);
  color: var(--mint);
}

.control-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 191, 99, .25);
  background:
    linear-gradient(135deg, rgba(255, 54, 92, .12), transparent 38%),
    linear-gradient(315deg, rgba(57, 255, 212, .12), transparent 40%),
    rgba(9, 14, 21, .86);
  box-shadow: var(--shadow);
}

.control-copy h2,
.tabs-head h2,
.faq-topline h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4.5vw, 54px);
}

.wager-tool {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.wager-tool label {
  display: grid;
  gap: 8px;
  color: #dceaf0;
  font-size: 14px;
}

.wager-tool input,
.wager-tool select {
  width: 100%;
  min-height: 54px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(0, 0, 0, .24);
  padding: 0 16px;
  outline: none;
}

.wager-tool input:focus,
.wager-tool select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(57, 255, 212, .12);
}

.wager-result {
  grid-column: 1 / -1;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  color: #0b1013;
  font-size: clamp(34px, 7vw, 72px);
  letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--mint), var(--gold));
  box-shadow: 0 20px 46px rgba(57, 255, 212, .16);
}

.campaign-tabs {
  margin-top: 28px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 12%, rgba(169, 120, 255, .18), transparent 32%),
    rgba(9, 14, 21, .78);
  box-shadow: var(--shadow);
}

.tabs-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tab-btn {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .04);
  color: #d5e4ec;
  cursor: pointer;
}

.tab-btn.is-active {
  border-color: rgba(255, 191, 99, .54);
  color: #130609;
  background: linear-gradient(135deg, var(--gold), #ff7d59);
}

.tab-panels {
  margin-top: 18px;
  min-height: 160px;
}

.tab-panel {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .11);
  padding: 24px;
  background: rgba(255, 255, 255, .04);
}

.tab-panel h3 {
  font-size: clamp(24px, 3vw, 36px);
}

.content-body {
  margin-top: 34px;
}

.article-section {
  position: relative;
  padding: clamp(28px, 5vw, 56px) 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.article-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 44px;
  width: 6px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ruby), var(--gold));
  box-shadow: 0 0 24px rgba(255, 54, 92, .38);
}

.article-section > * {
  margin-left: clamp(22px, 5vw, 72px);
}

.article-section h2 {
  font-size: clamp(30px, 4.6vw, 58px);
  max-width: 980px;
  margin-bottom: 20px;
}

.article-section h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: #fff8f1;
  font-size: clamp(23px, 3vw, 34px);
}

.article-section p,
.article-section ul,
.article-section ol,
.article-section .table-shell,
.article-section figure {
  max-width: 980px;
}

.article-section p {
  margin-top: 14px;
  margin-bottom: 0;
}

.article-section ul,
.article-section ol {
  display: grid;
  gap: 10px;
  padding: 0;
  margin-top: 18px;
  margin-bottom: 0;
  list-style: none;
}

.article-section li {
  position: relative;
  padding-left: 30px;
  color: #c7d5de;
  line-height: 1.7;
}

.article-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 11px;
  height: 11px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--ruby), var(--gold));
  box-shadow: 0 0 14px rgba(255, 83, 87, .35);
  transform: rotate(45deg);
}

.article-section ol li::before {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
}

.table-shell {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .035);
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  vertical-align: top;
  color: #cbd9e2;
  text-align: left;
  line-height: 1.55;
}

th {
  color: #fff8f0;
  background: rgba(255, 255, 255, .06);
}

tr:last-child td {
  border-bottom: 0;
}

.media-panel {
  margin-top: 24px;
}

.faq-zone {
  margin-top: 34px;
  padding: clamp(26px, 5vw, 52px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(57, 255, 212, .26);
  background:
    radial-gradient(circle at 18% 12%, rgba(57, 255, 212, .16), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(255, 54, 92, .14), transparent 32%),
    rgba(7, 12, 18, .86);
  box-shadow: var(--shadow);
}

.faq-topline p {
  max-width: 700px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

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

.faq-question i {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  position: relative;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 14px;
  height: 2px;
  background: var(--mint);
  border-radius: 999px;
}

.faq-question i::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.faq-item.is-open .faq-question i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

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

.faq-answer p {
  margin: 0;
}

.site-footer {
  margin-top: 46px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(5, 9, 14, .82);
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}

.footer-brand img {
  width: 220px;
  height: auto;
}

.footer-brand p {
  max-width: 650px;
}

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

.footer-links a {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 10px 14px;
  color: #d8e7ee;
  background: rgba(255, 255, 255, .04);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 14px 18px;
  color: #140709;
  background: linear-gradient(135deg, var(--ruby), var(--gold));
  box-shadow: 0 18px 48px rgba(255, 54, 92, .28);
  cursor: pointer;
}

.cookie-note {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: min(420px, calc(100% - 36px));
  z-index: 45;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(5, 10, 15, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  display: none;
}

.cookie-note.is-visible {
  display: block;
}

.cookie-note p {
  margin: 0 0 14px;
}

.cookie-note button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: #06100d;
  background: linear-gradient(135deg, var(--mint), #95ffd8);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
  }

  .primary-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 2px;
  }

  .hero-prism {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .poster-frame {
    transform: rotate(0deg);
  }

  .control-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 18px);
    top: 8px;
    margin-top: 8px;
    border-radius: 22px;
  }

  .brand-mark img {
    width: 168px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(255, 255, 255, .04);
    border-radius: 18px;
    padding: 10px;
  }

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

  .primary-nav a {
    border-radius: 14px;
  }

  .hero-prism,
  .intro-media,
  .route-rail,
  .control-grid,
  .campaign-tabs,
  .content-body,
  .site-footer {
    width: calc(100% - 20px);
  }

  .hero-prism {
    margin-top: 34px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 68px);
  }

  .hero-actions {
    display: grid;
  }

  .signal-stack {
    position: static;
    margin-top: 12px;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px;
  }

  .signal-stack span {
    justify-content: center;
    padding: 8px 4px;
    font-size: 12px;
  }

  .route-rail {
    grid-template-columns: 1fr;
  }

  .wager-tool {
    grid-template-columns: 1fr;
  }

  .tabs-head {
    display: block;
  }

  .tab-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .tab-btn {
    flex: 0 0 auto;
  }

  .article-section {
    padding-top: 34px;
  }

  .article-section::before {
    top: 38px;
    width: 4px;
  }

  .article-section > * {
    margin-left: 18px;
  }

  p {
    font-size: 15.5px;
  }

  th,
  td {
    padding: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .floating-cta {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
}

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