@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

/* ============================================================
   GLOBAL RESET / BASE
   ============================================================ */

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

body {
  background: #ffffff;
}

/* ============================================================
   CENTERING WRAPPER
   ============================================================ */

.centering-wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   NAV / HEADER
   ============================================================ */

nav.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 51px;
  background-color: #121546;
  z-index: 2000;
}

nav.menu .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

nav.menu .menu-inner {
  max-width: 1440px;
  height: 51px;
  margin: 0 auto;
  padding: 0 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.menu .logo {
  height: 28px;
  width: auto;
}

nav.menu .login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  background-color: var(--primary-green);
  border-radius: 6px;
  transition: background-color 0.15s, transform 0.15s;
  text-decoration: none;
  cursor: pointer;
}

nav.menu .login-button:hover {
  background-color: var(--secondary-green);
  transform: translateY(-1px);
}

nav.menu .login-button i {
  color: #ffffff;
  font-size: 14px;
}

nav.menu .text-wrapper-4 {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: normal;
}

/* ============================================================
   HOMEPAGE WRAPPER
   ============================================================ */

.homepage {
  background-color: #ffffff;
  width: 100%;
  overflow-x: clip;
}

/* shared font helpers */
.homepage .span {
  font-weight: 800;
}

.homepage .text-wrapper-7 {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

/* ============================================================
   HERO SECTION  (slideshow — absolute positioning kept here
   because it is inherently a stacking/overlay component)
   ============================================================ */

.homepage .hero-section {
  position: relative;
  background-color: #06081e;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 730px;
  padding-top: 51px; /* push content below fixed nav */
  overflow: hidden;
}

/* full-bleed slide stack */
.homepage .hero-slides {
  position: absolute;
  top: 51px;
  left: 0;
  right: 0;
  bottom: 0;
}

.homepage .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.homepage .hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* background image panel */
.homepage .hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 25%, #000 65%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 25%, #000 65%);
}

/* left-side dark overlay for text legibility */
.homepage .hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,8,30,0.88) 0%, rgba(6,8,30,0.55) 42%, transparent 72%);
  pointer-events: none;
}

/* content layer */
.homepage .hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* --- Hero headline --- */
.homepage .text-wrapper {
  position: absolute;
  top: 140px;
  left: 8%;
  width: min(700px, 84%);
  font-family: "Blame Sport-Regular", serif;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.5px;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0px 3.15px 11.3px #0000004c;
}

/* --- Hero subtext --- */
.homepage .win-real-money {
  position: absolute;
  top: 340px;
  left: 8%;
  width: min(580px, 84%);
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
}

/* --- Hero CTA buttons --- */
.homepage .hero-actions {
  position: absolute;
  top: 490px;
  left: 8%;
  display: flex;
  flex-direction: row;
  gap: 16px;
  z-index: 3;
}

.homepage .hero-actions .group,
.homepage .hero-actions .group-2 {
  position: relative;
  width: 202px;
  height: 53px;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

/* button backgrounds */
.homepage .rectangle-2,
.homepage .rectangle-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 53px;
  background-color: rgba(230, 230, 230, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  border-radius: 5.54px;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.homepage .group:hover .rectangle-2,
.homepage .group-2:hover .rectangle-3 {
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* button labels */
.homepage .text-wrapper-5,
.homepage .text-wrapper-6 {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 28.8px;
  white-space: nowrap;
}

/* --- Slideshow dots --- */
.homepage .slide-show {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.homepage .slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.homepage .slide-dot.active,
.homepage .slide-dot:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.2);
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */

.homepage .how-it-works-section {
  padding: 60px 5% 60px;
  text-align: center;
}

.homepage .how-it-works {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  color: #091248;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.homepage .the-home-of-peer-to {
  font-family: "Blame Sport-Regular", serif;
  font-weight: 400;
  color: #00559f;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin-top: 10px;
  margin-bottom: 40px;
}

/* feature cards row */
.homepage .how-it-works-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homepage .how-it-works-section > .how-it-works,
.homepage .how-it-works-section > .the-home-of-peer-to {
  width: 100%;
  max-width: 900px;
}

.homepage .feature-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  max-width: 1180px;
  width: 100%;
}

/* Each card */
.homepage .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex: 1 1 220px;
  max-width: 300px;
}

.homepage .feature-card img {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  object-fit: cover;
}

.homepage .feature-card .create-real-money,
.homepage .feature-card .let-us-take-care-of,
.homepage .feature-card .legally-play-for {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 400;
  color: #091248;
  font-size: 18px;
  line-height: 1.5;
}

.homepage .how-it-works-section .span {
  display: block;
  margin-bottom: 8px;
}

.homepage .how-it-works-section .text-wrapper-7 {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(9, 18, 72, 0.75);
}

/* ============================================================
   GAMES SECTION
   ============================================================ */

.homepage .games-section {
  position: relative;
  overflow: hidden;
}

/* full-bleed dark background */
.homepage .section-bg--games {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    1200px 700px at 0% 50%,
    rgba(18, 24, 80, 0.55) 0%,
    rgba(6, 8, 30, 1) 55%,
    rgba(6, 8, 30, 1) 100%
  );
  z-index: 0;
}

/* inner layout shell */
.homepage .games-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 5%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.homepage .games-left {
  flex: 1 1 30px;
  min-width: 0;
}

.homepage .games-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* section kicker + headline */
.homepage .section-kicker {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  color: #3d931b;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 18px;
  text-transform: uppercase;
}

.homepage .games-section .text-wrapper-8 {
  font-family: "Blame Sport-Regular", serif;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-top: 8px;
  text-shadow: 0px 3.15px 11.3px #0000004c;
}

.homepage .games-intro-text {
  margin-top: 16px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.55;
}

/* --- Accordion --- */
.homepage .games-accordion {
  margin-top: 26px;
  width: 100%;
  max-width: 640px;
}

.homepage .game-item {
  border-bottom: 1px solid rgba(61, 147, 27, 0.55);
}

.homepage .game-item:first-child {
  border-top: 1px solid rgba(61, 147, 27, 0.55);
}

.homepage .game-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.homepage .game-title {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}

.homepage .game-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(61, 147, 27, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage .game-chevron::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(61, 147, 27, 0.95);
  border-bottom: 2px solid rgba(61, 147, 27, 0.95);
  transform: rotate(45deg);
  margin-top: -2px;
}

.homepage .game-trigger[aria-expanded="true"] .game-chevron::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.homepage .game-panel {
  padding: 0 0 14px 0;
}

.homepage .game-panel .text-wrapper-7 {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* --- Games right-side image + button --- */
.homepage .games-illustration {
  width: clamp(350px, 28vw, 377px);
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

/* JOIN A CONTEST button in games section */
.homepage .games-section .group-3 {
  position: relative;
  width: 202px;
  height: 53px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.homepage .games-section .group-3 .rectangle-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 53px;
  background-color: rgba(230, 230, 230, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  border-radius: 5.54px;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.homepage .games-section .group-3:hover .rectangle-2 {
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.homepage .games-section .group-3 .text-wrapper-5 {
  position: absolute;
  top: 12px;
  left: 0;
  width: 200px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-align: center;
}

/* ============================================================
   COMMISSIONERS SECTION
   ============================================================ */

.homepage .commissioners-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  background-color: #ffffff;
  overflow: hidden;
}

/* Left image panel */
.homepage .section-image--commissioners {
  flex: 0 0 40%;
  min-height: 700px;
  background-image: url("../img/marketing/startcontest.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Right text content */
.homepage .commissioners-content {
  flex: 1 1 0;
  padding: 60px 5% 60px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.homepage .commissioners {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  color: #091248;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.homepage .commissioners-section .text-wrapper-13 {
  font-family: "Blame Sport-Regular", serif;
  font-weight: 400;
  color: #00559f;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.1;
  margin-top: 10px;
}

/* Numbered list */
.homepage .start-a-contest-and {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 400;
  color: #06081e;
  font-size: 18px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.homepage .start-a-contest-and li {
  position: relative;
  padding-left: 44px;
}

/* numbered circle */
.homepage .start-a-contest-and li .ellipse-5,
.homepage .start-a-contest-and li .ellipse-6,
.homepage .start-a-contest-and li .ellipse-7 {
  position: absolute;
  top: 2px;
  left: 0;
  width: 28px;
  height: 28px;
  background-color: #00559f;
  border-radius: 50%;
}

.homepage .text-wrapper-16,
.homepage .text-wrapper-17,
.homepage .text-wrapper-18 {
  position: absolute;
  top: 6px;
  left: 9px;
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  color: #fefefe;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

/* CREATE A CONTEST button */
.homepage .group-5 {
  position: relative;
  width: 270px;
  height: 53px;
  margin-top: 32px;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.homepage .rectangle-6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
  height: 53px;
  background-color: #3d931b;
  border-radius: 5.54px;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.homepage .group-5:hover .rectangle-6 {
  background-color: #2e7014;
  box-shadow: 0 10px 24px rgba(61, 147, 27, 0.4);
  transform: translateY(-2px);
}

.homepage .text-wrapper-15 {
  position: absolute;
  top: 12px;
  left: 0;
  width: 270px;
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 28.8px;
  white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer-inner {
  background-color: #06081e;
  width: 100%;
  padding: 56px 0 26px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 48px;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 900px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column-title {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

.footer-link {
  display: block;
  font-family: "avenir-next-lt-pro", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin: 3px 0;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-rg {
  width: 100%;
  flex-basis: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "avenir-next-lt-pro", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.footer-rg-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.footer-rg-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.footer-rg-link:hover {
  color: #ffffff;
}

.footer-bottom {
  width: 100%;
  flex-basis: 100%;
  margin-top: -32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   CHATBOT BUTTON (footer area)
   ============================================================ */

/* (styles live in chatbot.css — no overrides) */

/* ============================================================
   RESPONSIVE — TABLET  (≤1024px)
   ============================================================ */

@media (max-width: 1024px) {
  /* hero */
  .homepage .hero-section {
    min-height: 680px;
  }

  .homepage .text-wrapper {
    top: 120px;
    left: 5%;
    width: 90%;
  }

  .homepage .win-real-money {
    top: 310px;
    left: 5%;
    width: 90%;
  }

  .homepage .hero-actions {
    top: 460px;
    left: 5%;
  }

  /* how it works */
  .homepage .the-home-of-peer-to {
    font-size: 42px;
  }

  /* commissioners — side-by-side still, image shrinks */
  .homepage .section-image--commissioners {
    flex: 0 0 36%;
    min-height: 600px;
  }

  /* games */
  .homepage .games-shell {
    padding: 48px 5%;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤768px)
   ============================================================ */

@media (max-width: 768px) {
  /* hero */
  .homepage .hero-section {
    min-height: 620px;
  }

  .homepage .text-wrapper {
    top: 90px;
    font-size: 32px;
    line-height: 38px;
  }

  .homepage .win-real-money {
    top: 260px;
    font-size: 15px;
  }

  .homepage .hero-actions {
    top: 380px;
    flex-direction: column;
    width: 90%;
    max-width: 340px;
  }

  .homepage .hero-actions .group,
  .homepage .hero-actions .group-2 {
    width: 100%;
    max-width: 340px;
  }

  .homepage .hero-actions .rectangle-2,
  .homepage .hero-actions .rectangle-3 {
    width: 100%;
  }

  /* how it works — stack cards */
  .homepage .how-it-works-section {
    padding: 40px 5%;
  }

  .homepage .feature-cards-row {
    flex-direction: column;
    align-items: center;
  }

  .homepage .feature-card {
    max-width: 480px;
    width: 100%;
  }

  /* games — stack left/right */
  .homepage .games-shell {
    flex-direction: column;
    align-items: center;
    padding: 40px 5%;
    gap: 32px;
  }

  .homepage .games-left,
  .homepage .games-right {
    width: 100%;
  }

  .homepage .games-accordion {
    max-width: 100%;
  }

  /* commissioners — stack image above text */
  .homepage .commissioners-section {
    flex-direction: column;
  }

  .homepage .section-image--commissioners {
    flex: none;
    width: 100%;
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }

  .homepage .commissioners-content {
    padding: 36px 5% 40px;
    align-items: center;
    text-align: center;
  }

  .homepage .commissioners-section .text-wrapper-13 {
    font-size: 36px;
  }

  .homepage .start-a-contest-and {
    text-align: left;
  }

  .homepage .group-5 {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .homepage .section-image--commissioners { background-position: center -75px; }

  /* footer */
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-container {
    padding: 0 16px;
    gap: 24px;
  }

  .footer-bottom {
    margin-top: -10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤480px)
   ============================================================ */

@media (max-width: 480px) {
  .homepage .hero-section {
    min-height: 580px;
  }

  .homepage .text-wrapper {
    top: 80px;
    font-size: 28px;
    line-height: 34px;
  }

  .homepage .win-real-money {
    top: 240px;
    font-size: 14px;
  }

  .homepage .hero-actions {
    top: 360px;
  }
}

/* ============================================================
   LEGAL / POLICY PAGES
   ============================================================ */

.legal-page {
  width: 100%;
  padding: 40px 0;
  background: #ffffff;
  color: #091248;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.legal-page .legal-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-page .legal-hero {
  text-align: left;
  margin-bottom: 32px;
  margin-top: 60px;
}

.legal-page .legal-kicker {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  color: #091248;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.legal-page .legal-title {
  font-weight: 800;
  font-size: 44px;
  line-height: 52px;
  color: #00559f;
  margin: 0 0 12px;
}

.legal-page .legal-subcopy {
  font-size: 18px;
  color: rgba(9, 18, 72, 0.9);
  margin: 0 0 16px;
  max-width: 800px;
}

.legal-page .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.legal-page .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 85, 159, 0.1);
  border: 1px solid rgba(0, 85, 159, 0.2);
  color: #091248;
  font-weight: 600;
  font-size: 12px;
}

.legal-page .card {
  background: rgba(9, 18, 72, 0.03);
  border: 1px solid rgba(9, 18, 72, 0.12);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 24px;
}

.legal-page .card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #091248;
}

.legal-page .card p,
.legal-page .card li {
  font-size: 16px;
  color: rgba(9, 18, 72, 0.9);
}

.legal-page .card ul {
  margin: 0;
  padding-left: 18px;
}

.legal-page .legal-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

@media (min-width: 860px) {
  .legal-page .legal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.legal-page .callout {
  border-left: 4px solid rgba(0, 85, 159, 0.65);
  padding-left: 12px;
  margin: 12px 0;
}

.legal-page .small {
  font-size: 14px;
  color: rgba(9, 18, 72, 0.85);
}

.legal-page a {
  color: #00559f;
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

/* ============================================================
   RESPONSIBLE GAMING PAGE
   ============================================================ */

body.responsible-play {
  background: #ffffff;
  color: #091248;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
}

body.responsible-play .menu.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 51px;
  background-color: #121546;
}

body.responsible-play .menu-inner.site-header__inner {
  max-width: 1440px;
  height: 51px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.responsible-play .logo.site-logo {
  width: 147px;
  height: 28px;
  object-fit: contain;
}

body.responsible-play .login-button.site-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 31px;
  border: none;
  cursor: pointer;
}

body.responsible-play .login-button.site-login-button .text-wrapper-4 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #000000;
}

body.responsible-play .menu .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

body.responsible-play .legal-page { width: 100%; }

body.responsible-play .legal-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px 20px 64px;
}

body.responsible-play .legal-hero {
  padding: 8px 0 18px;
}

body.responsible-play .legal-kicker {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  color: #091248;
  text-transform: uppercase;
}

body.responsible-play .legal-title {
  margin-top: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 52px;
  color: #00559f;
  text-shadow: 0px 3.15px 11.3px rgba(0, 0, 0, 0.12);
}

body.responsible-play .legal-subcopy {
  margin-top: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(9, 18, 72, 0.9);
}

body.responsible-play .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

body.responsible-play .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 85, 159, 0.1);
  border: 1px solid rgba(0, 85, 159, 0.2);
  color: #091248;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
}

body.responsible-play .legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 26px;
}

@media (min-width: 860px) {
  body.responsible-play .legal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

body.responsible-play .card {
  background: rgba(9, 18, 72, 0.03);
  border: 1px solid rgba(9, 18, 72, 0.12);
  border-radius: 14px;
  padding: 18px;
}

body.responsible-play .card h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: #091248;
}

body.responsible-play .card p,
body.responsible-play .card li {
  font-size: 16px;
  color: rgba(9, 18, 72, 0.9);
}

body.responsible-play .card p { margin-bottom: 12px; }

body.responsible-play .card ul { padding-left: 18px; }

body.responsible-play .callout {
  border-left: 4px solid rgba(0, 85, 159, 0.65);
  padding-left: 12px;
  margin: 12px 0;
}

body.responsible-play .small {
  font-size: 14px;
  color: rgba(9, 18, 72, 0.85);
}

body.responsible-play .legal-shell a { color: #00559f; }
body.responsible-play .legal-shell a:hover { text-decoration: underline; }

body.responsible-play .footer-section {
  width: 100%;
  background: #121546;
  color: #ffffff;
  padding: 56px 0 26px;
}

body.responsible-play .footer-inner { width: 100%; }

body.responsible-play .footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: flex-start;
}

body.responsible-play .footer-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
}

body.responsible-play .footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 44px;
  width: 100%;
  max-width: 980px;
}

body.responsible-play .footer-column-title {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

body.responsible-play .footer-link {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin: 10px 0;
}

body.responsible-play .footer-link:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

body.responsible-play .footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  flex-basis: 100%;
}

body.responsible-play .footer-copy {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

body.responsible-play .footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

body.responsible-play .footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
}

body.responsible-play .footer-social-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 1);
}

body.responsible-play .footer-social-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  body.responsible-play .legal-shell { padding: 34px 16px 54px; }
  body.responsible-play .legal-title { font-size: 34px; line-height: 40px; }
  body.responsible-play .footer-container { flex-direction: column; gap: 24px; padding: 0 16px; }
  body.responsible-play .footer-columns { grid-template-columns: 1fr; gap: 22px; max-width: none; }
  body.responsible-play .footer-bottom { margin-top: 30px; flex-direction: column; align-items: flex-start; gap: 12px; }
  body.responsible-play .footer-social { justify-content: flex-start; }
}

body.responsible-play .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.modal-large { font-family: "Open Sans", var(--bs-body-font-family);font-size: 1.75rem;font-weight: 400 !important; }
.modal-login { border: 2px solid #555; !important;background-color: var(--bs-body-bg) !important;}
@media (max-width: 900px) {
	.modal-login {
		margin: 20px; top: 30px; padding-bottom: 100px;
	}
}

.iti { width: 100%; }
.iti--inline-dropdown .iti__dropdown-content { z-index: 1060; }
.iti input.iti__tel-input { padding-top: 1rem; padding-bottom: 1rem; padding-right: .75rem; }

#auth-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1050;
  align-items: center;
  justify-content: center;
  /* backdrop-filter: blur(2px); */
}
#auth-modal-overlay.open { display: flex; }
#auth-modal {
  position: relative;
  background: #fff;
  border-radius: .375rem;
  padding: 2rem;
  width: 100%;
  max-width: 390px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  animation: authModalIn .2s ease;
}
@keyframes authModalIn {
  from { transform: translateY(-10px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
#auth-modal-close {
  position: absolute;
  top: .75rem; right: 1rem;
  font-size: 1.5rem;
}
.auth-view.d-none { display: none; }

/* Match original login page: email/password stack flush with no gap */
#auth-view-login .form-floating:first-of-type .form-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: -1px;
}
#auth-view-login .form-floating:nth-of-type(2) .form-control {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* ============================================================
   WHERE CAN YOU PLAY PAGE 
   ============================================================ */

/* --- Hero --- */
.wcyp-hero {
  background: linear-gradient(135deg, #06081e 0%, #121546 60%, #0a2a5e 100%);
  padding: 72px 5% 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wcyp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(61,147,27,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.wcyp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.wcyp-kicker {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #3d931b;
  margin: 0 0 16px;
}

.wcyp-title {
  font-family: "Blame Sport-Regular", serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.wcyp-subtitle {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* --- Body --- */
.wcyp-body {
  background: #ffffff;
  padding: 64px 5% 80px;
}

.wcyp-body__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* --- Copy --- */
.wcyp-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wcyp-lead {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  color: #091248;
  margin: 0;
}

.wcyp-copy p {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(9,18,72,0.85);
  margin: 0;
}

.wcyp-copy strong {
  color: #091248;
  font-weight: 700;
}

.wcyp-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(61,147,27,0.07) 0%, rgba(0,85,159,0.06) 100%);
  border-left: 4px solid #3d931b;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin-top: 8px;
}

.wcyp-callout__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #3d931b;
  margin-top: 2px;
}

.wcyp-callout p {
  font-size: 16px !important;
  color: #091248 !important;
  margin: 0;
}

/* --- Map section --- */
.wcyp-map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wcyp-map-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0;
  line-height: 1;
}

.wcyp-map-title__num {
  font-family: "Blame Sport-Regular", serif;
  font-size: clamp(64px, 10vw, 100px);
  color: #3d931b;
  line-height: 1;
  letter-spacing: 2px;
}

.wcyp-map-title__label {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #091248;
  margin-top: -4px;
}

.wcyp-map-sub {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-size: 15px;
  color: rgba(9,18,72,0.6);
  margin: 0 0 24px;
  text-align: center;
}

.wcyp-map-wrap {
  width: 100%;
  background: linear-gradient(160deg, #06081e 0%, #121546 100%);
  border-radius: 16px;
  padding: 32px 24px 20px;
  box-shadow: 0 12px 48px rgba(6,8,30,0.18);
}

.wcyp-map {
  width: 100%;
  height: auto;
  display: block;
}

.wcyp-state {
  fill: #3d931b;
  stroke: #06081e;
  stroke-width: 1.5;
  transition: fill 0.2s;
}

.wcyp-state:hover {
  fill: #4db523;
}

.wcyp-label {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-size: 7px;
  font-weight: 700;
  fill: rgba(255,255,255,0.85);
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: 0.3px;
}

/* --- Badges --- */
.wcyp-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.wcyp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,147,27,0.15);
  border: 1px solid rgba(61,147,27,0.4);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.wcyp-badge svg {
  width: 15px;
  height: 15px;
  color: #3d931b;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .wcyp-hero {
    padding: 48px 5% 40px;
  }

  .wcyp-body {
    padding: 40px 5% 56px;
  }

  .wcyp-callout {
    flex-direction: column;
    gap: 10px;
  }

  .wcyp-map-wrap {
    padding: 20px 12px 16px;
    border-radius: 10px;
  }

  .wcyp-badge-row {
    gap: 8px;
  }

  .wcyp-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* ============================================================
   SPOTLIGHT HOMEPAGE  (.homepage.homepage-spotlight)
   Self-contained BEM block: .spot
   ============================================================ */

.homepage-spotlight { background: #06070d; color: #f5f7fa; display: block; overflow-x: hidden; }
.homepage-spotlight a { color: inherit; text-decoration: none; }
.homepage-spotlight button { font-family: inherit; cursor: pointer; }

.spot { display: block; }

/* --- Hero --- */
.spot__hero { position: relative; min-height: clamp(560px, 78vh, 820px); overflow: hidden; isolation: isolate; display: flex; flex-direction: column; justify-content: center; }
.spot__hero-slides { position: absolute; inset: 0; z-index: -1; }
.spot__hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; background-position: center; background-size: cover; background-repeat: no-repeat; transform: scale(1.05); animation: spot-drift 30s ease-in-out infinite alternate; }
.spot__hero-slide.is-active { opacity: 1; }
.spot__hero-slide--1 { background-image: radial-gradient(120% 80% at 70% 30%, rgba(34,197,94,.18) 0%, transparent 60%), linear-gradient(180deg, rgba(6,7,13,.2) 0%, rgba(6,7,13,.92) 100%), url("../img/marketing/background-image-3.jpg"); }
.spot__hero-slide--2 { background-image: radial-gradient(120% 80% at 70% 30%, rgba(34,197,94,.18) 0%, transparent 60%), linear-gradient(180deg, rgba(6,7,13,.2) 0%, rgba(6,7,13,.92) 100%), url("../img/marketing/background-image-2.jpg"); }
.spot__hero-slide--3 { background-image: radial-gradient(120% 80% at 70% 30%, rgba(34,197,94,.18) 0%, transparent 60%), linear-gradient(180deg, rgba(6,7,13,.2) 0%, rgba(6,7,13,.92) 100%), url("../img/marketing/background-golf.jpg"); }
.spot__hero-inner { width: 100%; max-width: 1200px; margin: 0 auto; padding: 80px 32px 48px; text-align: center; position: relative; }
.spot__eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.4); color: #ffffff; font-family: "avenir-next-lt-pro", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.spot__eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 10px #22c55e; animation: spot-pulse 1.8s ease-in-out infinite; }
.spot__headline { margin: 24px 0 12px; font-family: "Blame Sport-Regular", serif; font-weight: 400; font-size: clamp(40px, 6.5vw, 72px); letter-spacing: 0.5px; line-height: 1.02; color: #ffffff; text-shadow: 0 4px 30px rgba(0,0,0,.5); text-transform: uppercase; }
.spot__headline-accent { font-style: italic; color: #ffffff; }
.spot__sub { font-family: "avenir-next-lt-pro", sans-serif; color: #ffffff; font-size: 18px; max-width: 640px; margin: 0 auto 48px; line-height: 1.5; }
.spot__cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; width: 100%; max-width: 480px; margin: 0 auto; }
.spot__btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; border-radius: 8px; border: 0; font-family: "avenir-next-lt-pro", sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 1px; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s; text-decoration: none; flex: 0 1 auto; min-width: 200px; }
.spot__btn:hover { transform: translateY(-1px); }
.spot__btn--primary { background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%); color: #052e16; box-shadow: 0 0 0 1px rgba(34,197,94,.55), 0 18px 40px -8px rgba(34,197,94,.75), 0 0 28px rgba(34,197,94,.35); }
.spot__btn--primary:hover { box-shadow: 0 0 0 1px rgba(34,197,94,.7), 0 22px 48px -8px rgba(34,197,94,.85), 0 0 36px rgba(34,197,94,.5); }
.spot__btn--ghost { background: rgba(34,197,94,.08); color: #ffffff; border: 2px solid rgba(34,197,94,.6); box-shadow: 0 0 24px rgba(34,197,94,.25); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.spot__btn--ghost:hover { background: rgba(34,197,94,.18); border-color: rgba(34,197,94,.9); box-shadow: 0 0 30px rgba(34,197,94,.4); }

/* --- Hero slide dots --- */
.spot__dots { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.spot__dot { width: 11px; height: 11px; padding: 0; border-radius: 999px; border: 2px solid rgba(255,255,255,.65); background: transparent; cursor: pointer; transition: background-color .25s, border-color .25s, transform .2s, box-shadow .25s; }
.spot__dot:hover { border-color: #ffffff; transform: scale(1.15); }
.spot__dot.is-active { background-color: #22c55e; border-color: #22c55e; box-shadow: 0 0 10px rgba(34,197,94,.7); }

/* --- Proof strip --- */
.spot__proof { margin-top: 48px; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: .9; }
.spot__proof-item { text-align: center; }
.spot__proof-num { font-family: "Blame Sport-Regular", serif; font-size: 28px; font-weight: 800; color: #22c55e; letter-spacing: -.01em; }
.spot__proof-lbl { font-family: "avenir-next-lt-pro", sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #98a0b3; margin-top: 4px; }

/* --- Section shell --- */
.spot__shell { max-width: 1200px; margin: 0 auto; padding: 32px 32px; }
.spot__shell--divided { position: relative; margin-top: 24px; padding-top: 56px; }
.spot__shell--divided::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: min(680px, 60%); height: 1px; background: linear-gradient(90deg, transparent, rgba(34,197,94,.45), transparent); }
.spot__section-head { text-align: center; margin-bottom: 32px; }
.spot__section-eyebrow { font-family: "avenir-next-lt-pro", sans-serif; color: #22c55e; font-size: 12px; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; }
.spot__section-title { font-family: "Blame Sport-Regular", serif; font-size: clamp(28px, 4vw, 56px); font-weight: 400; letter-spacing: 0.5px; margin: 12px 0; color: #ffffff; text-transform: uppercase; }
.spot__section-sub { font-family: "avenir-next-lt-pro", sans-serif; color: #98a0b3; font-size: 18px; max-width: 760px; margin: 0 auto; line-height: 1.5; }

/* --- Game cards (horizontal carousel) --- */
.spot__games-carousel { position: relative; padding: 0 72px; }
.spot__games { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 72px) / 4); gap: 24px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 0 12px; }
.spot__games::-webkit-scrollbar { display: none; }
.spot__game { scroll-snap-align: start; position: relative; overflow: hidden; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; transition: transform .25s, border-color .25s, background .25s; display: block; }
.spot__game:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); border-color: rgba(34,197,94,.4); }
.spot__game-img { height: 220px; background-size: cover; background-repeat: no-repeat; background-position: center; position: relative; background-color: #0d0d18; }
.spot__game-img--survivor { background-image: url("../img/marketing/games-survivor.webp"); }
.spot__game-img--pickem { background-image: url("../img/marketing/games-pickem.webp"); }
.spot__game-img--tiers { background-image: url("../img/marketing/games-tiers.webp"); }
.spot__game-img--oneanddone { background-image: url("../img/marketing/games-oneanddone.webp"); }
.spot__game-img--guillotine { background-image: url("../img/marketing/games-guillotine.webp"); }
.spot__game-img--bracket { background-image: url("https://images.unsplash.com/photo-1504450758481-7338eba7524a?w=800&q=80&fm=webp"); }
.spot__game-img--confidence { background-image: url("../img/marketing/games-confidence.webp"); }
.spot__game-img--sportsbook { background-image: url("../img/marketing/games-sportsbook.webp"); }
.spot__game-img--salarycap { background-image: url("../img/marketing/games-salarycap.webp"); }
.spot__game-img--squares { background-image: url("../img/marketing/games-squares.webp"); }
.spot__game-img--calcutta { background-image: url("../img/marketing/games-calcutta.webp"); }
.spot__game-body { padding: 24px 24px 32px; }
.spot__game-title { font-family: "avenir-next-lt-pro", sans-serif; font-size: 22px; font-weight: 800; margin: 0 0 8px; color: #ffffff; }
.spot__game-desc { font-family: "avenir-next-lt-pro", sans-serif; color: #98a0b3; font-size: 16px; line-height: 1.55; margin: 0; }

/* --- Carousel arrows --- */
.spot__games-arrow { position: absolute; top: 110px; transform: translateY(-50%); width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; z-index: 5; transition: transform .15s, opacity .2s; display: inline-flex; align-items: center; justify-content: center; }
.spot__games-arrow::before { content: ""; display: block; width: 100%; height: 100%; background: url("../img/marketing/ellipse-arrow.webp") center / contain no-repeat; }
.spot__games-arrow--prev::before { transform: rotate(90deg); }
.spot__games-arrow--next::before { transform: rotate(-90deg); }
.spot__games-arrow:hover { transform: translateY(-50%) scale(1.06); }
.spot__games-arrow.is-disabled { opacity: 0; pointer-events: none; }
.spot__games-arrow--prev { left: 4px; }
.spot__games-arrow--next { right: 4px; }

/* --- Value props --- */
.spot__values { display: grid; grid-template-columns: repeat(2, minmax(0, 440px)); gap: 28px; justify-content: center; max-width: 960px; margin: 0 auto; }
.spot__value { position: relative; overflow: hidden; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; transition: transform .25s, border-color .25s, background .25s; display: block; }
.spot__value:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); border-color: rgba(34,197,94,.4); }
.spot__value-img { width: 100%; height: 260px; background-size: cover; background-repeat: no-repeat; background-position: center; background-color: #0d0d18; }
.spot__value-img--create { background-image: url("../img/marketing/howitworks-left.webp"); }
.spot__value-img--handle { background-image: url("../img/marketing/howitworks-center.webp"); }
.spot__value-img--compete { background-image: url("../img/marketing/howitworks-right.webp"); }
.spot__value-body { padding: 24px 24px 32px; }
.spot__value-title { font-family: "avenir-next-lt-pro", sans-serif; margin: 0 0 8px; font-size: 22px; font-weight: 800; color: #ffffff; }
.spot__value-desc { font-family: "avenir-next-lt-pro", sans-serif; margin: 0; color: #98a0b3; font-size: 16px; line-height: 1.55; }
.spot__value-note { font-style: italic; font-size: 13px; }

/* --- Final CTA --- */
.spot__final { padding: 64px 32px; background: radial-gradient(80% 100% at 50% 0%, rgba(34,197,94,.18) 0%, transparent 70%), linear-gradient(180deg, #1b1750 0%, #110d3a 100%); border: 1px solid rgba(34,197,94,.25); border-radius: 14px; text-align: center; }
.spot__final-title { font-family: "Blame Sport-Regular", serif; font-size: clamp(28px, 4vw, 56px); font-weight: 400; letter-spacing: 0.5px; margin: 0 0 12px; color: #ffffff; text-transform: uppercase; }
.spot__final-sub { font-family: "avenir-next-lt-pro", sans-serif; color: #d3d9e6; max-width: 520px; margin: 0 auto 24px; font-size: 18px; line-height: 1.5; }

/* --- Get Started (Commissioners) --- */
.spot__getstarted { padding: 48px; background: radial-gradient(80% 100% at 0% 50%, rgba(34,197,94,.08) 0%, transparent 60%), rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; overflow: hidden; }
.spot__getstarted-grid { display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: 48px; align-items: center; }
.spot__getstarted-image { aspect-ratio: 4 / 5; border-radius: 14px; background-size: cover; background-position: center; position: relative; overflow: hidden; border: 0; box-shadow: 0 16px 40px rgba(0,0,0,.5); background-color: #0d0d18; background-image: url("../img/marketing/startcontest.webp"); }
.spot__getstarted-image::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, transparent 30%, rgba(6,7,13,.65) 100%), linear-gradient(120deg, rgba(34,197,94,.12) 0%, transparent 60%); }
.spot__getstarted-eyebrow { font-family: "avenir-next-lt-pro", sans-serif; color: #22c55e; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; }
.spot__getstarted-title { font-family: "Blame Sport-Regular", serif; font-size: clamp(36px, 5vw, 56px); font-weight: 400; letter-spacing: 0.5px; line-height: 1; margin: 12px 0 32px; color: #ffffff; text-transform: uppercase; }
.spot__getstarted-title em { font-style: italic; color: #ffffff; }
.spot__getstarted-steps { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 24px; }
.spot__getstarted-step { display: grid; grid-template-columns: 36px 1fr; gap: 16px; align-items: start; }
.spot__getstarted-num { width: 32px; height: 32px; border-radius: 999px; background: #22c55e; color: #052e16; display: grid; place-items: center; font-family: "avenir-next-lt-pro", sans-serif; font-weight: 900; font-size: 14px; box-shadow: 0 0 0 4px rgba(34,197,94,.12); }
.spot__getstarted-step-title { font-family: "avenir-next-lt-pro", sans-serif; margin: 0 0 4px; font-size: 18px; font-weight: 800; color: #ffffff; }
.spot__getstarted-step-desc { font-family: "avenir-next-lt-pro", sans-serif; margin: 0; color: #98a0b3; font-size: 16px; line-height: 1.6; }

@keyframes spot-drift { 0% { transform: scale(1.05) translate(0,0); } 100% { transform: scale(1.12) translate(-2%, -2%); } }
@keyframes spot-pulse { 50% { opacity: .35; } }

/* --- Tablet (≤960px) --- */
@media (max-width: 960px) {
	.spot__hero-inner { padding: 72px 24px 40px; }
	.spot__shell { padding: 28px 24px; }
	.spot__section-head { margin-bottom: 24px; }
	.spot__games-carousel { padding: 0 60px; }
	.spot__games { grid-auto-columns: calc((100% - 40px) / 3); gap: 20px; }
	.spot__games-arrow { top: 110px; }
	.spot__games-arrow--prev { left: 2px; }
	.spot__games-arrow--next { right: 2px; }
	.spot__values { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
	.spot__value-img { height: 220px; }
	.spot__getstarted { padding: 36px; }
	.spot__getstarted-grid { grid-template-columns: 1fr; gap: 32px; }
	.spot__getstarted-image { aspect-ratio: 16 / 10; max-height: 320px; }
	.spot__final { padding: 56px 24px; }
}

/* --- Phone (≤640px) --- */
@media (max-width: 640px) {
	.spot__hero { min-height: clamp(480px, 88vh, 720px); }
	.spot__hero-inner { padding: 71px 16px 32px; }
	.spot__eyebrow { padding: 6px 12px; font-size: 11px; letter-spacing: 1.2px; }
	.spot__headline { margin: 20px 0 10px; font-size: clamp(32px, 9vw, 44px); }
	.spot__sub { font-size: 15px; margin-bottom: 32px; line-height: 1.45; }
	.spot__cta-row { flex-direction: column; gap: 10px; max-width: 320px; }
	.spot__btn { width: 100%; min-width: 0; padding: 14px 24px; font-size: 14px; }
	.spot__shell { padding: 24px 16px; }
	.spot__shell--divided { margin-top: 8px; padding-top: 40px; }
	.spot__section-head { margin-bottom: 20px; }
	.spot__section-eyebrow { font-size: 11px; letter-spacing: 2px; }
	.spot__section-title { font-size: clamp(26px, 7vw, 36px); }
	.spot__final-title { font-size: clamp(26px, 7vw, 36px); }
	.spot__section-sub { font-size: 15px; }
	.spot__games-carousel { padding: 0 42px; }
	.spot__games { grid-auto-columns: 85%; gap: 16px; padding-left: 4px; padding-right: 4px; }
	.spot__game-img { height: 200px; }
	.spot__games-arrow { width: 32px; height: 32px; top: 100px; }
	.spot__games-arrow--prev { left: 1px; }
	.spot__games-arrow--next { right: 1px; }
	.spot__game-body { padding: 20px 20px 24px; }
	.spot__game-title { font-size: 19px; }
	.spot__values { grid-template-columns: 1fr; gap: 16px; }
	.spot__value-img { height: 200px; }
	.spot__value-body { padding: 20px 20px 24px; }
	.spot__value-title { font-size: 19px; }
	.spot__getstarted { padding: 24px 20px; }
	.spot__getstarted-grid { gap: 24px; }
	.spot__getstarted-image { max-height: 260px; }
	.spot__getstarted-title { font-size: clamp(28px, 8vw, 40px); margin-bottom: 24px; }
	.spot__getstarted-step-title { font-size: 17px; }
	.spot__getstarted-step-desc { font-size: 15px; }
	.spot__final { padding: 40px 20px; }
	.spot__final-sub { font-size: 15px; margin-bottom: 20px; }
}

/* --- Small phone (≤380px) --- */
@media (max-width: 380px) {
	.spot__hero-inner { padding: 63px 12px 24px; }
	.spot__headline { font-size: 30px; }
	.spot__shell { padding: 20px 12px; }
}
