*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1b4b;
  --ink-soft: #475569;
  --surface: #ffffff;
  --surface-muted: #f1f5f9;
  --indigo: #4f46e5;
  --indigo-dark: #3730a3;
  --coral: #f43f5e;
  --coral-dark: #e11d48;
  --line: rgba(79, 70, 229, 0.14);
  --shadow: 0 18px 48px rgba(30, 27, 75, 0.12);
  --shadow-card: 0 8px 28px rgba(244, 63, 94, 0.14);
  --header-h: 4.25rem;
  --sticky-h: 4.75rem;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Literata", Georgia, serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface-muted);
  background-image:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(79, 70, 229, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 0%, rgba(244, 63, 94, 0.07), transparent 50%),
    linear-gradient(180deg, #eef2ff 0%, var(--surface-muted) 40%, #f8fafc 100%);
  overflow-x: hidden;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--indigo);
  text-decoration: none;
}

a:hover {
  color: var(--coral-dark);
}

.wrap {
  width: min(100% - 1.5rem, 76rem);
  margin-inline: auto;
}

/* Header: logo | nav center | CTA pill */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(30, 27, 75, 0.06);
  padding-top: env(safe-area-inset-top, 0);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--coral), var(--indigo));
  opacity: 0.85;
}

.site-header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.55rem 0;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  cursor: default;
  user-select: none;
  white-space: nowrap;
}

.brand__accent {
  color: var(--coral);
}

.site-nav {
  justify-self: center;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 1.1rem;
  list-style: none;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.35rem 0.55rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.site-nav__list a:hover {
  color: var(--indigo);
}

.menu-open {
  display: none;
}

.menu-burger {
  display: none;
}

/* CTAs */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.65rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--coral) 0%, var(--coral-dark) 55%, var(--indigo) 100%);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  touch-action: manipulation;
  text-align: center;
}

.cta:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 32px rgba(244, 63, 94, 0.35);
}

.cta:active {
  transform: scale(0.98);
}

.cta--header {
  justify-self: end;
  font-size: 0.72rem;
  padding: 0.7rem 1.15rem;
  white-space: nowrap;
}

.cta--card {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
  margin-top: auto;
  border-radius: var(--radius-md);
}

.cta--wide {
  min-height: 52px;
  margin-bottom: 1.5rem;
}

/* Showcase — first screen */
.showcase {
  padding: 1.1rem 0 2.25rem;
}

.showcase__intro {
  text-align: center;
  margin-bottom: 1.35rem;
}

.showcase__intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.showcase__lead {
  font-family: var(--font-display);
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 2.5vw, 1.02rem);
  font-weight: 500;
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.55;
}

.showcase__viewport {
  margin: 0 -0.75rem;
  padding: 0 0.75rem;
  overflow: hidden;
}

.showcase__rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--indigo) transparent;
  padding-bottom: 0.85rem;
}

.showcase__rail::-webkit-scrollbar {
  height: 5px;
}

.showcase__rail::-webkit-scrollbar-thumb {
  background: var(--indigo);
  border-radius: var(--radius-pill);
}

.offer-card {
  position: relative;
  flex: 0 0 min(88vw, 300px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--indigo), var(--coral));
  z-index: 3;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(30, 27, 75, 0.16);
}

.offer-card--featured {
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: var(--shadow-card), var(--shadow);
}

.offer-card--featured::before {
  height: 6px;
}

.offer-card__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--indigo);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.offer-card__visual {
  display: block;
  width: 100%;
  height: 168px;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.offer-card__visual:hover img {
  transform: scale(1.05);
}

.offer-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.15rem 1.2rem;
  gap: 0.45rem;
}

.offer-card__content h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.offer-card__promo {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--coral-dark);
}

.offer-card__features {
  list-style: none;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: grid;
  gap: 0.3rem;
  margin: 0.2rem 0 0.45rem;
}

.offer-card__features li {
  padding-left: 1.1rem;
  position: relative;
}

.offer-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* Hero panel (below showcase) */
.hero-panel {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7) 30%);
}

.hero-panel__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-panel__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.hero-panel__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  margin-bottom: 1.1rem;
  max-width: 34rem;
}

.hero-panel__text {
  display: grid;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.hero-panel__text p {
  text-align: justify;
  hyphens: auto;
}

.hero-panel__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
}

.hero-panel__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Benefits */
.benefits {
  padding: 3rem 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.benefits h2,
.faq-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  text-align: center;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}

.benefits__lead,
.faq-block__lead {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

.benefits__grid {
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.benefit-tile {
  padding: 1.4rem 1.3rem;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.benefit-tile:hover {
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: var(--shadow-card);
}

.benefit-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.65rem;
  color: var(--indigo);
  background: #eef2ff;
  border-radius: 12px;
}

.benefit-tile h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.benefit-tile p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* FAQ */
.faq-block {
  padding: 3.25rem 0;
}

.faq-block__items {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin-inline: auto;
}

.faq-entry {
  padding: 1.15rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--indigo);
  box-shadow: 0 4px 16px rgba(30, 27, 75, 0.04);
}

.faq-entry h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--indigo-dark);
  margin-bottom: 0.45rem;
}

.faq-entry p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Responsible gambling */
.rg-section {
  padding: 2rem 0 3rem;
}

.rg-section__box {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border: 2px dashed rgba(79, 70, 229, 0.25);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
}

.rg-section__age {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 0.45rem;
}

.rg-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.rg-section p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 32rem;
  margin-inline: auto;
}

.rg-section__help-label {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.rg-section__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 0.5rem;
}

.rg-section__links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #cbd5e1;
  text-align: center;
}

.site-footer__url {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fda4af;
  margin-bottom: 0.35rem;
}

.site-footer__copy,
.site-footer__note,
.site-footer__age {
  font-size: 0.85rem;
  max-width: 40rem;
  margin-inline: auto;
}

.site-footer__note {
  margin-top: 0.75rem;
  opacity: 0.9;
}

.site-footer__age {
  margin-top: 0.5rem;
}

.site-footer__age strong {
  color: #fda4af;
}

/* Mobile sticky CTA */
.sticky-play {
  display: none;
}

.has-mobile-cta .sticky-play {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96) 30%);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.sticky-play--hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.cta--sticky {
  pointer-events: auto;
  width: 100%;
  min-height: 56px;
  font-size: 0.95rem;
}

@media (min-width: 600px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-card {
    flex: 0 0 min(42vw, 280px);
  }
}

@media (min-width: 900px) {
  .showcase {
    padding-top: 1.5rem;
  }

  .showcase__rail {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    scroll-snap-type: none;
    gap: 0.8rem;
  }

  .offer-card {
    flex: none;
    min-width: 0;
  }

  .offer-card__visual {
    height: 148px;
  }

  .hero-panel__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .has-mobile-cta {
    padding-bottom: 0;
  }

  .has-mobile-cta .sticky-play {
    display: none;
  }
}

@media (min-width: 1100px) {
  .offer-card__visual {
    height: 162px;
  }
}

@media (max-width: 899px) {
  .has-mobile-cta main {
    padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0));
  }

  .site-header__row {
    grid-template-columns: 1fr auto auto;
  }

  .brand {
    order: 1;
  }

  .menu-burger {
    order: 2;
  }

  .cta--header {
    order: 3;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0));
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    justify-self: stretch;
    grid-column: 1 / -1;
    order: 4;
    z-index: 250;
    box-shadow: var(--shadow);
  }

  .menu-open:checked ~ .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__list a {
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .menu-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 10px;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--surface);
    justify-self: end;
  }

  .menu-burger__line {
    display: block;
    height: 2px;
    background: var(--indigo);
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
  }

  .menu-open:checked + .menu-burger .menu-burger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open:checked + .menu-burger .menu-burger__line:nth-child(2) {
    opacity: 0;
  }

  .menu-open:checked + .menu-burger .menu-burger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .cta--header {
    font-size: 0.65rem;
    padding: 0.65rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta,
  .offer-card,
  .offer-card__visual img {
    transition: none;
  }
}
