:root {
  --teal: #00a295;
  --dark-teal: #006971;
  --bright-teal: #73e2d9;
  --green: #b9ff9c;
  --yellow: #ffff79;
  --gray: #f4f4f4;
  --text: #2f385c;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(0, 58, 62, 0.18);
  --header-height: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--teal);
  font-family: "Wallop Text", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  padding-top: var(--header-height);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: "Wallop Display", "Wallop Text", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 27px;
}

p {
  margin: 0 0 14px;
}

.wrap {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.centered {
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 44px;
  min-width: 172px;
  align-items: center;
  justify-content: center;
  border: 3px solid currentColor;
  border-radius: 999px;
  padding: 8px 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-green {
  color: var(--dark-teal);
  background: var(--green);
  border-color: var(--green);
}

.button-yellow {
  color: var(--dark-teal);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-dark {
  color: var(--white);
  background: var(--dark-teal);
  border-color: var(--dark-teal);
}

.button-small {
  min-width: auto;
  min-height: 36px;
  padding: 5px 16px;
  font-size: 17px;
}

.wide {
  width: 100%;
  min-width: 0;
  border-radius: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
}

.header-bar {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  height: 62px;
  align-items: center;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}

.menu-button {
  display: grid;
  width: 70px;
  height: 62px;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
}

.menu-button span {
  width: 34px;
  height: 3px;
  border-radius: 4px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.brand-mark {
  justify-self: start;
  color: var(--white);
  font-family: "Wallop Display", Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
  text-decoration: none;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-right: 20px;
}

.play-tabs {
  display: flex;
  height: 46px;
  justify-content: flex-end;
  background: var(--dark-teal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.play-tab {
  display: grid;
  width: 224px;
  place-items: center;
  border-top: 4px solid var(--dark-teal);
  border-bottom: 4px solid var(--dark-teal);
  color: var(--white);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
}

.play-tab.active {
  border-bottom-color: var(--yellow);
  color: var(--yellow);
}

.drawer {
  position: fixed;
  top: 62px;
  left: 0;
  z-index: 23;
  width: min(340px, 88vw);
  max-height: calc(100vh - 62px);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translateX(-105%);
  transition: transform 0.22s ease;
}

.menu-open .drawer {
  transform: translateX(0);
}

.drawer-link,
.drawer summary,
.drawer-group a {
  display: block;
  border-bottom: 1px solid var(--teal);
  padding: 13px 22px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  text-transform: lowercase;
}

.drawer-link.active {
  box-shadow: inset 6px 0 0 var(--dark-teal);
  color: var(--dark-teal);
}

.drawer summary {
  cursor: pointer;
}

.drawer-group a {
  background: var(--gray);
  padding-left: 42px;
}

.drawer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 20px;
}

.drawer-social a,
.footer-social a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--dark-teal);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.drawer-scrim {
  position: fixed;
  inset: 62px 0 0;
  z-index: 22;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.menu-open .drawer-scrim {
  visibility: visible;
  opacity: 1;
}

.hero {
  overflow: hidden;
  background: var(--dark-teal);
}

.hero img {
  width: 100%;
}

.promo-strip {
  background: var(--dark-teal);
  color: var(--white);
}

.promo-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0 22px;
  text-align: center;
}

.promo-inner h2 {
  color: var(--yellow);
  font-size: 29px;
}

.promo-inner p {
  margin-bottom: 0;
  font-size: 15px;
}

.promo-inner a:not(.button) {
  color: var(--green);
  font-weight: 700;
}

.section {
  padding: 54px 0;
}

.section-white {
  background: var(--white);
}

.section-copy {
  max-width: 870px;
  margin: 0 auto 28px;
}

.light-copy {
  color: var(--white);
}

.light-copy h1,
.light-copy h2,
.light-copy h3 {
  color: var(--white);
}

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

.champion-card,
.game-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.champion-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding-bottom: 22px;
}

.champion-card h3 {
  margin: 0;
  padding: 18px 18px 8px;
  text-align: center;
}

.champion-card p,
.champion-card a {
  margin: 16px 22px 0;
}

.champion-card a {
  color: var(--dark-teal);
  font-weight: 700;
}

.champion-card.dark {
  background: var(--dark-teal);
  color: var(--white);
}

.champion-card.dark h3,
.champion-card.dark a {
  color: var(--yellow);
}

.bright {
  background: var(--bright-teal);
}

.green {
  background: var(--green);
}

.yellow {
  background: var(--yellow);
}

.cta-line {
  margin-top: 30px;
}

.games-section {
  background: var(--teal);
}

.game-rail-shell {
  position: relative;
}

.game-rail {
  display: grid;
  grid-auto-columns: minmax(260px, 330px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 3px 20px;
  scroll-behavior: smooth;
  scrollbar-color: var(--dark-teal) var(--bright-teal);
  scrollbar-width: thin;
}

.game-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.game-card img {
  aspect-ratio: 3 / 2;
  width: 100%;
  object-fit: cover;
}

.game-card-body {
  flex: 1;
  padding: 18px;
}

.game-card h3 {
  color: var(--text);
  font-size: 25px;
}

.game-card p {
  margin-bottom: 0;
}

.rail-arrow {
  position: absolute;
  top: 43%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--dark-teal);
  font-size: 42px;
  line-height: 1;
}

.rail-prev {
  left: -24px;
}

.rail-next {
  right: -24px;
}

.jackpots h2 {
  margin-bottom: 26px;
}

.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
}

.jackpot-pill {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 6px 18px;
  align-items: center;
  border-radius: 999px;
  background: var(--yellow);
  padding: 18px 28px;
  color: var(--dark-teal);
  box-shadow: var(--shadow);
}

.players,
.amount {
  font-family: "Wallop Display", Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.amount {
  grid-row: span 2;
}

.cents {
  font-size: 19px;
}

.safeplay {
  background: var(--gray);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.split .section-copy {
  margin: 0;
}

.split img {
  justify-self: center;
}

.register-section {
  background: var(--bright-teal);
}

.longread-section {
  background: var(--white);
  color: var(--text);
}

.longread {
  display: grid;
  gap: 26px;
  max-width: 1080px;
  margin: 0 auto;
}

.longread-header {
  border-radius: 8px;
  background: var(--gray);
  padding: 30px;
  box-shadow: var(--shadow);
}

.longread-kicker {
  margin-bottom: 10px;
  color: var(--dark-teal);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.longread h1 {
  max-width: 900px;
  color: var(--dark-teal);
}

.longread h2 {
  color: var(--teal);
}

.longread section,
.longread-highlight,
.longread-footer {
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 58, 62, 0.12);
}

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

.longread-highlight {
  background: var(--dark-teal);
  color: var(--white);
}

.longread-highlight h2 {
  color: var(--yellow);
}

.longread-footer {
  background: var(--bright-teal);
}

.longread-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 132px;
  border-radius: 8px;
  background: var(--white);
  padding: 58px 20px 20px;
  box-shadow: var(--shadow);
  font-weight: 700;
  text-align: center;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 16px;
  left: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--dark-teal);
  color: var(--white);
  content: counter(steps);
  transform: translateX(-50%);
}

.site-footer {
  background: var(--dark-teal);
  color: var(--white);
  padding: 28px 0 32px;
}

.footer-contact,
.footer-social,
.footer-links,
.footer-logos {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding: 22px 0;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.footer-contact a,
.footer-links a,
.footer-note a {
  color: var(--white);
  font-weight: 700;
}

.footer-social,
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

.footer-social a {
  background: var(--teal);
}

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

.footer-logos img {
  max-height: 42px;
  width: auto;
}

.payment img {
  max-height: 28px;
}

.footer-note {
  max-width: 980px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 14px;
}

.cookie-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: min(420px, calc(100vw - 36px));
  gap: 14px;
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: var(--shadow);
}

.cookie-toast p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 991px) {
  :root {
    --header-height: 102px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .header-bar {
    grid-template-columns: 70px 1fr auto;
    height: 58px;
  }

  .menu-button {
    width: 64px;
    height: 58px;
  }

  .brand-mark {
    font-size: 32px;
  }

  .button-register {
    display: none;
  }

  .play-tabs {
    height: 44px;
  }

  .play-tab {
    width: 50%;
  }

  .drawer {
    top: 58px;
    max-height: calc(100vh - 58px);
  }

  .drawer-scrim {
    inset: 58px 0 0;
  }

  .promo-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0 20px;
  }

  .champion-grid,
  .jackpot-grid,
  .split,
  .longread-grid,
  .steps,
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 0;
  }

  .rail-arrow {
    display: none;
  }
}

@media (max-width: 540px) {
  .wrap {
    width: min(100% - 24px, 1140px);
  }

  .header-actions {
    padding-right: 10px;
  }

  .brand-mark {
    font-size: 29px;
  }

  .button-small {
    padding: 5px 12px;
  }

  .game-rail {
    grid-auto-columns: minmax(250px, 82vw);
  }

  .jackpot-pill {
    grid-template-columns: 1fr;
    border-radius: 8px;
    text-align: center;
  }

  .longread-header,
  .longread section,
  .longread-highlight,
  .longread-footer {
    padding: 20px;
  }
}
