@charset "UTF-8";

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2"),
       url("../fonts/Rubik-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2"),
       url("../fonts/Rubik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"),
       url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2"),
       url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #101010;
  --panel: #181512;
  --panel-2: #221c17;
  --text: #fff8ec;
  --muted: #c8bfb2;
  --red: #d71920;
  --red-dark: #8d1015;
  --gold: #f5c518;
  --gold-2: #ffdf68;
  --green: #1ec46c;
  --line: rgba(255, 255, 255, .13);
  --shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Rubik", Arial, sans-serif;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 8%, rgba(215, 25, 32, .28), transparent 28rem),
    radial-gradient(circle at 86% 26%, rgba(30, 196, 108, .13), transparent 22rem),
    linear-gradient(180deg, #100f0f 0%, #15110f 52%, #0c0c0c 100%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 12, 12, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.header.is-scrolled {
  background: rgba(12, 12, 12, .92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .38);
}

.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__brand {
  flex: 0 0 auto;
}

.header__logo {
  width: 156px;
  height: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 248, 236, .74);
  font-size: 14px;
  font-weight: 500;
}

.header__nav a {
  transition: color .2s ease;
}

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

.header__btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.cta:hover {
  transform: translateY(-2px);
}

.btn {
  padding: 0 17px;
  font-size: 14px;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn-yellow {
  color: #1a1205;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 8px 24px rgba(245, 197, 24, .22);
}

.btn-red {
  color: #fff;
  background: linear-gradient(180deg, #ed3238, var(--red));
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(12, 12, 12, .96) 0%, rgba(12, 12, 12, .83) 36%, rgba(12, 12, 12, .28) 72%, rgba(12, 12, 12, .74) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, .02) 0%, #101010 100%),
    url("../img/sportsbook-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero__inner {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 640px);
  align-content: center;
  justify-content: start;
  gap: 26px;
  padding: 52px 0;
}

.hero__content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(58px, 6.2vw, 96px);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

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

.cta {
  min-width: 184px;
  padding: 0 26px;
  font-size: 16px;
}

.cta-primary {
  color: #1a1205;
  background: linear-gradient(180deg, #ffe37b, #f5c518);
  box-shadow: 0 18px 42px rgba(245, 197, 24, .25);
}

.cta-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
}

.bonus-panel {
  position: relative;
  width: min(100%, 520px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(34, 28, 23, .88), rgba(16, 16, 16, .76));
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: panelFloat 4.8s ease-in-out infinite;
}

.bonus-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.bonus-panel__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.bonus-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.bonus-panel strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
}

.bonus-panel__top strong {
  color: var(--gold);
  font-size: 48px;
}

.bonus-meter {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  overflow: hidden;
  margin-bottom: 22px;
}

.bonus-meter span {
  display: block;
  width: 83%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
  animation: meterPulse 2.8s ease-in-out infinite;
}

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

.bonus-panel__grid div,
.step-card,
.rule-card,
.match-card,
.faq__item,
.terms-note {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
}

.bonus-panel__grid div {
  min-height: 88px;
  padding: 16px;
}

.bonus-panel__grid strong {
  margin-top: 8px;
  font-size: 19px;
}

.section {
  padding: 78px 0;
}

.quick-steps.section {
  padding-top: 0;
}

.section__head {
  max-width: 680px;
  margin-bottom: 32px;
}

.section__head h2 {
  margin-bottom: 0;
}

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

.step-card,
.rule-card {
  min-height: 235px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: #180d05;
  background: var(--gold);
  font-weight: 800;
}

.step-card p,
.rule-card p,
.sports-copy p,
.faq__answer p,
.terms-note p,
.footer {
  color: var(--muted);
  line-height: 1.55;
}

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

.sports-section__inner {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  align-items: center;
  gap: 62px;
}

.live-board {
  position: relative;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(245, 197, 24, .24);
  background: linear-gradient(180deg, rgba(34, 28, 23, .9), rgba(18, 15, 13, .94));
  box-shadow: var(--shadow);
}

.live-board::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(215, 25, 32, .55), transparent 35%, rgba(30, 196, 108, .35));
}

.live-board__header,
.match-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.live-board__header {
  margin-bottom: 14px;
  padding: 6px 4px 14px;
  border-bottom: 1px solid var(--line);
}

.live-board__header span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-board__header strong {
  font-size: 22px;
}

.match-card {
  min-height: 78px;
  padding: 14px;
}

.match-card + .match-card {
  margin-top: 10px;
}

.match-card div > span {
  color: var(--muted);
  font-size: 13px;
}

.match-card strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
}

.market-pill {
  flex: 0 0 auto;
  min-width: 76px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #171006;
  background: var(--gold);
  font-weight: 800;
}

.sports-copy {
  max-width: 610px;
}

.sports-copy p {
  margin-bottom: 26px;
  font-size: 18px;
}

.rules {
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(0, 0, 0, 0));
}

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

.rule-card {
  min-height: 210px;
}

.rule-card h3,
.step-card h3 {
  margin-bottom: 12px;
}

.terms-note {
  margin-top: 18px;
  padding: 18px 20px;
}

.terms-note p {
  margin-bottom: 0;
}

.terms-note a,
.footer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__inner {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  overflow: hidden;
}

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

.faq__question span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(245, 197, 24, .16);
}

.faq__question span::before,
.faq__question span::after {
  content: "";
  position: absolute;
  inset: 13px 7px auto;
  height: 2px;
  background: var(--gold);
}

.faq__question span::after {
  transform: rotate(90deg);
  transition: transform .22s ease;
}

.faq__item.is-open .faq__question span::after {
  transform: rotate(0deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq__answer p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  padding: 30px 0 86px;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(245, 197, 24, .22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(141, 16, 21, .8), rgba(34, 28, 23, .92) 45%, rgba(20, 66, 43, .62));
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  background: #0b0b0b;
  font-size: 13px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom-row + .footer-bottom-row {
  margin-top: 24px;
}

.footer-bottom-col_text p {
  margin-bottom: 0;
}

.footer-bottom-col_flex {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-age img {
  width: 42px;
  height: 42px;
}

.joc-icon img {
  width: 118px;
  height: auto;
}

.footer-license__icon img {
  width: 42px;
  height: 42px;
}

.footer-bottom-license {
  color: rgba(200, 191, 178, .8);
  font-size: 12px;
  line-height: 1.55;
}

.reveal,
.reveal-on-load {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.09);
  }
}

@keyframes panelFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes meterPulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.22);
  }
}

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

@media (max-width: 1040px) {
  .container {
    width: min(1160px, calc(100% - 32px));
  }

  .header__nav {
    display: none;
  }

  .hero__inner,
  .sports-section__inner,
  .faq__inner {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 24px;
    padding-top: 44px;
  }

  .bonus-panel,
  .live-board {
    max-width: 560px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .header__inner {
    min-height: 66px;
    gap: 12px;
  }

  .header__logo {
    width: 118px;
  }

  .header__btns {
    gap: 8px;
  }

  .btn {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero__bg {
    background-image:
      linear-gradient(90deg, rgba(12, 12, 12, .98) 0%, rgba(12, 12, 12, .94) 54%, rgba(12, 12, 12, .62) 100%),
      linear-gradient(180deg, rgba(12, 12, 12, .2) 0%, rgba(12, 12, 12, .72) 62%, #101010 100%),
      url("../img/sportsbook-hero.png");
    background-position: 71% top;
    transform: none;
    animation: none;
  }

  .hero__inner {
    min-height: auto;
    padding: 42px 0 22px;
    gap: 18px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(44px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero__lead,
  .sports-copy p {
    font-size: 17px;
  }

  .hero__lead {
    max-width: 280px;
    margin-bottom: 20px;
  }

  .hero__actions {
    gap: 10px;
  }

  .cta {
    min-height: 46px;
  }

  .hero__actions,
  .final-cta__inner,
  .footer-bottom-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    width: 100%;
  }

  .bonus-panel {
    padding: 16px;
    animation: none;
  }

  .bonus-panel__top strong {
    font-size: 30px;
  }

  .bonus-panel__top {
    margin-bottom: 12px;
  }

  .bonus-meter {
    height: 10px;
    margin-bottom: 12px;
  }

  .steps,
  .rules__grid {
    grid-template-columns: 1fr;
  }

  .bonus-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .bonus-panel__grid div {
    min-height: 58px;
    padding: 10px;
  }

  .bonus-panel__grid strong {
    margin-top: 5px;
    font-size: 15px;
  }

  .section {
    padding: 58px 0;
  }

  .quick-steps.section {
    padding-top: 8px;
  }

  .step-card,
  .rule-card {
    min-height: auto;
  }

  .sports-section__inner {
    gap: 34px;
  }

  .live-board {
    padding: 12px;
  }

  .match-card {
    min-height: 72px;
  }

  .faq__inner {
    gap: 22px;
  }

  .final-cta {
    padding-bottom: 62px;
  }

  .final-cta__inner {
    padding: 22px;
  }

  .footer-bottom-col_flex {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .bonus-panel__top {
    display: block;
  }

  .bonus-panel__top strong {
    margin-top: 8px;
    font-size: 34px;
  }

  .market-pill {
    flex-basis: 66px;
  }
}
