:root {
  --bg: #07090f;
  --bg-elev: #0f131c;
  --bg-card: #141925;
  --bg-soft: #1a2030;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f7ff;
  --muted: #9aa3b8;
  --blue: #2f6bff;
  --blue-hot: #4d84ff;
  --green: #22c55e;
  --purple: #7b3cff;
  --purple-2: #a855f7;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(47, 107, 255, 0.22), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(123, 60, 255, 0.16), transparent 50%),
    linear-gradient(180deg, #0a0d15 0%, var(--bg) 40%, #080a10 100%);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-hot);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 3rem;
}

/* Age gate */
.age-gate,
.underage {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4, 6, 12, 0.88);
  backdrop-filter: blur(10px);
}

.age-gate[hidden],
.underage[hidden] {
  display: none;
}

.age-gate__panel,
.underage__panel {
  width: min(440px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.age-gate__logo {
  margin-bottom: 0.75rem;
}

.age-gate h2,
.underage h2 {
  font-family: var(--font-display);
  margin: 0 0 0.65rem;
  font-size: 1.45rem;
}

.age-gate p,
.underage p {
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.age-gate__actions {
  display: grid;
  gap: 0.65rem;
}

.age-gate__note {
  margin-top: 1rem !important;
  font-size: 0.85rem;
}

body.is-locked {
  overflow: hidden;
}

body.is-locked .page {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 50;
  margin: 0.75rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  background: rgba(15, 19, 28, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

.brand-dot {
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}

.nav a:hover,
.nav-pill.is-active {
  color: #fff;
  background: var(--blue);
  text-decoration: none;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.btn-link:hover {
  color: var(--blue-hot);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue-hot), var(--blue));
  color: #fff;
  box-shadow: 0 10px 28px rgba(47, 107, 255, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #5f90ff, #2f6bff);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  border-radius: 10px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__banner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  min-height: 420px;
  box-shadow: var(--shadow);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
}

.hero__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 15, 0.92) 0%, rgba(7, 9, 15, 0.72) 42%, rgba(7, 9, 15, 0.25) 100%),
    linear-gradient(180deg, transparent 40%, rgba(7, 9, 15, 0.75) 100%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 34rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: #b7c6ff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero h1,
.cat-card h2,
.section-head h2,
.support h2,
.responsible h2,
.final-cta h2,
.bonus-card h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.hero__lead {
  margin: 0 0 1.25rem;
  color: #d5dced;
  font-size: 1.05rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.legal-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.code-inline {
  display: inline-block;
  padding: 0.1em 0.45em;
  border-radius: 8px;
  background: rgba(47, 107, 255, 0.22);
  border: 1px solid rgba(77, 132, 255, 0.45);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.promo-code-box {
  position: relative;
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  width: min(100%, 320px);
  border-radius: 14px;
  background: rgba(7, 9, 15, 0.72);
  border: 1px solid rgba(77, 132, 255, 0.35);
  backdrop-filter: blur(8px);
}

.promo-code-box--hero {
  width: min(100%, 420px);
  margin: 1rem 0 1.25rem;
  padding: 1.25rem 1.3rem 1.15rem;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(47, 107, 255, 0.22) 55%, rgba(123, 60, 255, 0.2)),
    rgba(8, 12, 22, 0.92);
  border: 2px solid rgba(34, 197, 94, 0.65);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 40px rgba(34, 197, 94, 0.25),
    0 18px 40px rgba(0, 0, 0, 0.45);
  animation: promoPulse 2.4s ease-in-out infinite;
}

.promo-code-box__badge {
  position: absolute;
  top: -0.7rem;
  left: 1.1rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #04140a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.35);
}

.promo-code-box__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.promo-code-box--inline {
  width: min(100%, 420px);
  margin-bottom: 1rem;
  padding: 1.1rem 1.15rem;
  background:
    linear-gradient(145deg, rgba(34, 197, 94, 0.12), rgba(47, 107, 255, 0.14)),
    #0c1018;
  border: 2px solid rgba(34, 197, 94, 0.45);
  border-radius: 16px;
}

.promo-code-box__label {
  margin-bottom: 0;
  color: #c9d4ef;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-code-box__reward {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.promo-code-box__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.promo-code {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  text-align: center;
  line-height: 1.15;
}

.promo-code-box--hero .btn-primary,
.promo-code-box--inline .btn-primary {
  flex-shrink: 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
}

.promo-code-box__hint {
  margin: 0.75rem 0 0;
  color: #e8edf8;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.promo-code-box__legal {
  margin: 0.4rem 0 0;
  color: #9aa3b8;
  font-size: 0.78rem;
}

.bonus-credit {
  margin: -0.35rem 0 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.92rem;
}

@keyframes promoPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06) inset,
      0 0 28px rgba(34, 197, 94, 0.2),
      0 18px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(34, 197, 94, 0.55);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08) inset,
      0 0 48px rgba(34, 197, 94, 0.42),
      0 18px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(74, 222, 128, 0.9);
  }
}

.hero__side {
  display: grid;
  gap: 1rem;
}

.promo-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
  min-height: 190px;
  box-shadow: var(--shadow);
}

.promo-card h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.promo-card p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.promo-card--purple {
  background: linear-gradient(145deg, #6d28d9, #7c3aed 45%, #4c1d95);
}

.promo-card--pay {
  background: linear-gradient(160deg, #171d2b, #121722);
}

.promo-card__art {
  font-size: 3rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
  animation: float 3.6s ease-in-out infinite;
}

.chip {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.pay-row span {
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #dce3f5;
}

.partners {
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.section-kicker {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  color: #e8edf8;
  font-weight: 600;
}

/* Categories */
.categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cat-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cat-card__visual {
  height: 220px;
  overflow: hidden;
}

.cat-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card__visual img {
  transform: scale(1.04);
}

.cat-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
}

.cat-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}

.cat-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

/* Games */
.games,
.rewards,
.support,
.responsible,
.final-cta {
  margin-bottom: 2rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0;
  font-size: 1.45rem;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.75rem;
}

.game-tile {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 20%, var(--bg)), var(--bg));
  background-color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.game-tile:hover {
  transform: translateY(-4px);
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.game-tile__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}

.game-tile__studio {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

/* Bonus */
.bonus-card {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.25rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.bonus-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
}

.bonus-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.bonus-amount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.85rem 1.2rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: #0c1018;
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.wager__labels,
.wager__values {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
}

.wager__bar {
  height: 4px;
  margin: 0.45rem 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.wager__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform-origin: left;
  animation: fillBar 1.4s ease 0.3s both;
}

.bonus-card__cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.25rem;
}

.stat span {
  color: var(--muted);
  font-weight: 600;
}

/* Support */
.support {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
  align-items: stretch;
}

.support__copy {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #173a8a, #12203f);
  border: 1px solid rgba(77, 132, 255, 0.35);
}

.support__copy h2 {
  margin: 0 0 0.55rem;
}

.support__copy p {
  margin: 0 0 1.1rem;
  color: #d7e2ff;
}

.support__visual {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 260px;
}

.support__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Responsible */
.responsible__inner {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.responsible h2 {
  margin: 0 0 0.55rem;
}

.responsible p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  max-width: 70ch;
}

.responsible ul {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
  color: #d7deee;
}

.responsible li {
  margin-bottom: 0.25rem;
}

/* Final CTA */
.final-cta__panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.final-cta__copy {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.final-cta__copy h2 {
  margin: 0;
  font-size: 1.7rem;
}

.final-cta__copy p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  margin-top: 1rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
}

.footer-brand p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 55ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-links a {
  color: #d5dced;
  font-weight: 600;
}

.footer-disclaimer {
  margin: 0;
  color: #7f889c;
  font-size: 0.8rem;
  max-width: 90ch;
}

/* Legal pages */
.legal-page {
  width: min(820px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  margin: 1.6rem 0 0.55rem;
  font-size: 1.2rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: var(--blue-hot);
  font-weight: 600;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fillBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .hero,
  .categories,
  .bonus-card,
  .support,
  .final-cta__panel,
  .stats {
    grid-template-columns: 1fr;
  }

  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav {
    display: none;
  }

  .hero__banner {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 1rem, 1180px);
  }

  .site-header {
    border-radius: 18px;
    padding: 0.65rem;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__copy {
    padding: 1.35rem;
  }

  .promo-card {
    min-height: auto;
  }

  .promo-code-box--hero,
  .promo-code-box--inline {
    width: 100%;
  }

  .promo-code-box__row {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-code-box__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .promo-code {
    letter-spacing: 0.12em;
  }
}
