@font-face {
  font-family: "Comic Relief";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/comicrelief-700.woff2') format('woff2');
}

@font-face {
  font-family: "M PLUS Rounded 1c";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/mplusrounded1c-400.woff2') format('woff2');
}
@font-face {
  font-family: "M PLUS Rounded 1c";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/mplusrounded1c-500.woff2') format('woff2');
}
@font-face {
  font-family: "M PLUS Rounded 1c";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/mplusrounded1c-700.woff2') format('woff2');
}

:root {
  --bg: #170d10;
  --bg-elevated: #21131a;
  --surface: #2b1922;
  --surface-2: #38212c;
  --border: #55323f;
  --border-soft: #2e1b23;

  --text: #ffffff;
  --text-muted: #ddc9ce;
  --text-faint: #a98d95;

  --gold: #F2A93C;
  --gold-2: #FFD666;
  --green: #E8940F;

  --purple: #7C3AED;
  --purple-2: #A855F7;

  --grad-gold: linear-gradient(135deg, var(--gold-2), var(--gold));
  --grad-purple: linear-gradient(135deg, var(--purple-2), var(--purple));
  --grad-btn-primary: linear-gradient(180deg, #c084fc, #7C3AED 55%, #5b21b6);
  --grad-btn-ghost: linear-gradient(180deg, #c9903f, #6b4118 60%, #3f2412);

  --radius-sm: 16px;
  --radius-md: 16px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --container: 1180px;
  --container-narrow: 720px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: .25s;

  --shadow-1: 0 10px 30px -12px rgba(0, 0, 0, .5);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(75vw 55vh at 8% 5%, rgba(124, 58, 237, .18), transparent 70%),
    radial-gradient(70vw 55vh at 95% 20%, rgba(150, 80, 40, .18), transparent 70%),
    radial-gradient(75vw 55vh at 10% 42%, rgba(124, 58, 237, .14), transparent 70%),
    radial-gradient(70vw 55vh at 92% 60%, rgba(150, 80, 40, .15), transparent 70%),
    radial-gradient(75vw 55vh at 12% 80%, rgba(124, 58, 237, .12), transparent 70%),
    radial-gradient(70vw 55vh at 90% 98%, rgba(150, 80, 40, .12), transparent 70%),
    linear-gradient(180deg, #2a1622, var(--bg) 25%, var(--bg) 100%);
  color: var(--text);
  font-family: "M PLUS Rounded 1c", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: "Comic Relief", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { color: var(--text-muted); }

button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; text-align: left; -webkit-appearance: none; appearance: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--gold);
  color: #170d10;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.wrap {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.wrap-narrow { max-width: var(--container-narrow); }

.section { padding: clamp(3.5rem, 6vw, 6.5rem) 0; scroll-margin-top: 32px; }

.hero-intro {
  padding: 1.25rem 0;
  background: linear-gradient(to bottom, rgba(23, 13, 16, .55), rgba(23, 13, 16, .4) 60%, rgba(23, 13, 16, .55));
}
.hero-intro-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: .9rem 1.5rem;
  overflow: hidden;
}
.hero-intro-card::before,
.hero-intro-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--purple));
}
.hero-intro-card::before { left: 0; }
.hero-intro-card::after { right: 0; }
.hero-intro-body {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.hero-intro-text {
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.wins-section {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  background: linear-gradient(to bottom, rgba(23, 13, 16, .55), rgba(23, 13, 16, .4) 60%, rgba(23, 13, 16, .55));
  box-shadow: inset 0 12px 24px -12px rgba(0, 0, 0, .5);
}

.wins-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 860px) {
  .wins-wrap { grid-template-columns: 1fr 260px; align-items: stretch; }
}

.wins-panel {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: .9rem;
}

.wins-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
}

.wins-panel-title {
  margin: 0;
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
}

.wins-live {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #4ade80;
  flex-shrink: 0;
}
.wins-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: wins-pulse 1.6s ease-in-out infinite;
}
@keyframes wins-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, .5); }
  50% { opacity: .7; box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

.wins-panel-head-right {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}

.wins-nav { display: flex; gap: .35rem; }

.wins-carousel-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.wins-arrow {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
}
.wins-arrow svg { width: 12px; height: 12px; }

.wins-track {
  display: flex;
  gap: .6rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  min-width: 0;
}
.wins-track::-webkit-scrollbar { display: none; }

.win-card {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex: 0 0 auto;
  width: 175px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .5rem;
}

.win-card-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--thumb-bg, var(--surface-2));
  overflow: hidden;
  display: flex;
}
.win-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.win-card-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 1px;
}
.win-card-player {
  font-size: .68rem;
  color: var(--text-faint);
  font-weight: 500;
}
.win-card-game {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.win-card-amount {
  font-size: .85rem;
  font-weight: 800;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.jackpot-panel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
}
@media (min-width: 860px) {
  .jackpot-panel { flex-direction: column; }
}

.jackpot-coin-icon {
  flex-shrink: 0;
  font-size: 40px;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .35));
}

.jackpot-amount {
  font-family: "Comic Relief", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #FFD400 0%, #E8880A 55%, #9C5200 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform .15s ease;
}
.jackpot-amount.is-ticking { transform: scale(1.04); }

#games {
  position: relative;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  scroll-margin-top: 32px;
}
#games::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(90px, 12vw, 170px);
  background: linear-gradient(to bottom, rgba(23, 13, 16, .5), transparent);
  pointer-events: none;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
#providers-payments .section-head { max-width: none; }

.eyebrow {
  color: var(--gold-2);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
}

.promo-subhead {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}
.promo-subhead h3 {
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.9rem);
}

.overview-lead {
  max-width: 780px;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  font-size: 1rem;
  color: var(--text-muted);
}

.grad-text {
  color: var(--green);
  background: linear-gradient(180deg, #FFD400 0%, #E8880A 55%, #9C5200 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: "Comic Relief", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), filter var(--dur) var(--ease);
  white-space: nowrap;
  transform: translateZ(0);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 0;
  height: 44px;
  padding: 0;
  border: none;
  background: none;
}
.btn-primary .btn-cap {
  flex: 0 0 auto;
  width: 35px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.btn-primary .btn-cap-left { background-image: url('/assets/buttons/button-primary-l-left.webp'); }
.btn-primary .btn-cap-right { background-image: url('/assets/buttons/button-primary-l-right.webp'); }
.btn-primary .btn-center {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 12px;
  padding-inline: .35rem;
  background-image: url('/assets/buttons/button-primary-l-center.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.btn-primary .btn-text {
  color: var(--gold-2);
  font-family: "Comic Relief", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .55);
  white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.12); }

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, .02);
}
.btn-outline:hover { border-color: var(--gold-2); color: var(--gold-2); }

.btn-ghost {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
}
.btn-ghost .btn-cap {
  flex: 0 0 auto;
  width: 31px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.btn-ghost .btn-cap-left { background-image: url('/assets/buttons/button-secondary-left.webp'); }
.btn-ghost .btn-cap-right { background-image: url('/assets/buttons/button-secondary-right.webp'); }
.btn-ghost .btn-center {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 12px;
  padding-inline: .3rem;
  background-image: url('/assets/buttons/button-secondary-center.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.btn-ghost .btn-text {
  color: var(--gold-2);
  font-family: "Comic Relief", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: .85rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .55);
  white-space: nowrap;
}
.btn-ghost:hover { filter: brightness(1.1); }

.btn-sm { font-size: .85rem; }
.btn-sm.btn-primary { height: 36px; }
.btn-sm.btn-primary .btn-cap { width: 29px; }
.btn-sm.btn-primary .btn-text { font-size: .85rem; }
.btn-lg { font-size: 1.3rem; }
.btn-lg.btn-primary { height: 68px; }
.btn-lg.btn-primary .btn-cap { width: 54px; }
.btn-lg.btn-primary .btn-text { font-size: 1.5rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-soft);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #2a1622, var(--bg));
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}
.nav-side-left { justify-content: flex-start; }
.nav-side-right { justify-content: flex-end; margin-left: auto; }

.nav-side ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-side ul a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav-side ul a:hover { color: var(--text); }

.nav-icon {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  object-fit: contain;
}
.nav-icon [fill="currentColor"] { fill: url(#icon-gold-grad); }
.nav-icon [stroke="currentColor"] { stroke: url(#icon-gold-grad); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.header-actions > * { flex-shrink: 0; }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .02);
  color: var(--gold-2);
  flex-shrink: 0;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn-icon:hover { border-color: var(--gold-2); }
.btn-icon svg { width: 20px; height: 20px; }

.bottom-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(440px, 46vw, 600px);
  background: var(--bg) url("assets/hero-bg.webp") center center / cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  top: 0;
  height: clamp(65px, 9vw, 125px);
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg) 15%, rgba(23, 13, 16, .85) 40%, rgba(23, 13, 16, .4) 70%, transparent 100%);
}
.hero::after {
  bottom: 0;
  height: clamp(80px, 12vw, 160px);
  background: linear-gradient(to top, var(--bg) 0%, var(--bg) 15%, rgba(23, 13, 16, .85) 40%, rgba(23, 13, 16, .4) 70%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  transform: translateY(10px);
}

.hero h1 {
  font-size: clamp(2.2rem, 1.5rem + 3.2vw, 3.9rem);
  max-width: 760px;
  margin-inline: auto;
}
.hero h1 .grad-text { font-weight: 400; font-size: 1.15em; font-variant-numeric: tabular-nums; }
.bonus-plate {
  display: inline-block;
  padding: .12em .55em;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #5a3a1f, #2b1810);
  border: 2px solid #8a5a2a;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .5), inset 0 1px 2px rgba(255, 255, 255, .1);
}
.hero-title { display: inline-block; font-size: 36px; line-height: 1.25; }
.hero h1 .hero-title .grad-text {
  font-size: 1em;
  display: inline-block;
  padding-right: 4px;
  background: linear-gradient(180deg, #FFE362 0%, #F3AF38 50%, #C77D1E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtext { display: inline-block; font-family: "Comic Relief", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: .55em; position: relative; top: -.6em; }

@media (min-width: 641px) {
  .hero h1 { font-size: 42px; }

  .hero h1 { margin-inline: 0; }
  .hero-inner { margin-left: clamp(-3rem, -4vw, -1.5rem); }
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .7rem;
}

.hero .hero-cta { margin-top: 0; }

@keyframes hero-btn-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.hero .btn-lg.btn-primary {
  animation: hero-btn-pulse 2s ease-in-out infinite;
}
.hero .btn-lg.btn-primary:hover,
.hero .btn-lg.btn-primary:active {
  animation-play-state: paused;
}

@media (min-width: 641px) {
  .hero .hero-cta { justify-content: center; max-width: 760px; margin-inline: 0; }
}

.pg-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
}
@media (min-width: 640px) {
  .pg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .pg-grid { grid-template-columns: repeat(5, 1fr); }
}

.pg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: .9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pg-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.pg-thumb {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2);
}
.pg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 13, 16, .6);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.pg-card:hover .pg-thumb::after { opacity: 1; }

.pg-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.3rem;
  border-radius: var(--radius-md);
  background: var(--grad-gold);
  color: #170d10;
  font-weight: 700;
  font-size: .88rem;
  opacity: 0;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 1;
}
.pg-card:hover .pg-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pg-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: .2rem .55rem;
  border-radius: var(--radius-pill);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pg-badge-hot { background: var(--grad-gold); color: #170d10; }

.pg-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  padding: 0 .2rem;
  text-align: center;
}
.pg-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  white-space: normal;
  line-height: 1.25;
}
.pg-provider {
  font-size: .85rem;
  color: var(--text-faint);
}

.promo-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
}

.promo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.promo-card:hover { transform: translateY(-4px); }

.promo-card-featured {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-color: var(--gold);
}

.promo-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(255, 214, 102, .12);
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.promo-card h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.promo-value {
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--gold);
  margin-bottom: .6rem;
}
.promo-card p:not(.promo-value) { font-size: .875rem; margin-bottom: 1rem; }

.promo-card .btn {
  margin-inline: auto;
}

.promo-code {
  display: table;
  margin-inline: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(242, 169, 60, .14);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: .3rem .6rem;
  margin-top: 1rem;
}

.promo-code-inline {
  display: inline-block;
  margin: 0 .1rem;
  vertical-align: middle;
}

.promo-fineprint {
  margin-top: 2rem;
  font-size: .82rem;
  color: var(--text-faint);
  max-width: 900px;
}

.fact-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .fact-grid { grid-template-columns: repeat(3, 1fr); }
}

.fact-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

#support {
  scroll-margin-top: 32px;
}

.fact-label {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gold);
}

.fact-value {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
}

.steps-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .steps-grid { grid-template-columns: repeat(5, 1fr); }
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.step-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #170d10;
  font-weight: 800;
  margin-bottom: 1rem;
}

.step-card h4 { font-size: 1.02rem; margin-bottom: .4rem; }
.step-card p { font-size: .88rem; }

.info-block {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--border-soft);
}

.info-block-title {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.info-block > p { max-width: 780px; margin-bottom: 1.5rem; }
.info-block > p:last-child { margin-bottom: 0; }

.info-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  max-width: 780px;
}
.info-list li { position: relative; padding-left: 1.5rem; color: var(--text-muted); }
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-gold);
}
.info-list strong { color: var(--text); }

.limits-table-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.limits-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.limits-table th,
.limits-table td {
  padding: .9rem 1.2rem;
  text-align: left;
  white-space: nowrap;
}
.limits-table thead th {
  background: var(--surface-2);
  color: var(--text-faint);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
}
.limits-table tbody tr { background: var(--surface); }
.limits-table tbody tr:nth-child(even) { background: var(--bg-elevated); }
.limits-table td:first-child { color: var(--text); font-weight: 600; }
.limits-table td:last-child { color: var(--text-muted); white-space: normal; }

.providers-carousel + .providers-carousel { margin-top: 2.5rem; }

.providers-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.providers-carousel-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--text);
}

.providers-carousel-nav { display: flex; gap: .5rem; flex-shrink: 0; }

.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  background: transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.carousel-arrow:hover { border-color: var(--gold-2); color: var(--gold-2); }

.providers-carousel-track {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: .25rem;
}
.providers-carousel-track::-webkit-scrollbar { display: none; }

.provider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(110px, 13vw, 150px);
  height: 70px;
  padding: .7rem .9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  isolation: isolate;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.provider-item:hover {
  border-color: var(--gold-2);
  box-shadow: 0 0 16px rgba(255, 214, 102, .3);
}
.provider-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
  opacity: .9;
}

.summary-table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.summary-table td {
  padding: .95rem 1.3rem;
  border-bottom: 1px solid var(--border-soft);
}
.summary-table tr:last-child td { border-bottom: none; }
.summary-table tr:nth-child(even) { background: var(--bg-elevated); }
.summary-table td:first-child { color: var(--text-faint); font-weight: 600; width: 40%; }
.summary-table td:last-child { color: var(--text); font-weight: 700; text-align: right; }

.updated-section {
  padding: 1.6rem 0;
  border-top: 1px solid var(--border-soft);
}
.updated-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--text-faint);
  font-size: .85rem;
}
.updated-badge svg { flex-shrink: 0; color: var(--gold-2); }
.updated-date { color: var(--text-muted); font-weight: 700; }

.content-screenshot {
  margin: 1.75rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.content-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-list { display: flex; flex-direction: column; gap: .7rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-right: 2px solid var(--gold-2);
  border-bottom: 2px solid var(--gold-2);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(225deg); }

.faq-item p { margin-top: .8rem; font-size: .92rem; }

.faq-item p a,
.info-block p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.faq-item p a:hover,
.info-block p a:hover { color: var(--gold-2); }

.cta-band {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.cta-band-glow {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, .18), transparent 65%);
  z-index: -1;
  pointer-events: none;
}

.cta-band-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 1.2rem;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  margin-bottom: .6rem;
}
.cta-band p { max-width: 480px; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; }

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.footer-inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
}
@media (min-width: 780px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .brand-logo {
  height: 44px;
}

.footer-brand p {
  margin: .9rem 0 1.1rem;
  font-size: .9rem;
  max-width: 480px;
}

.footer-col h3 {
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: .92rem;
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 1.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-legal-text {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-disclaimer {
  font-size: .875rem;
  color: var(--text-faint);
  max-width: 100%;
}
.footer-disclaimer a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.footer-disclaimer a:hover { color: var(--gold-2); }

.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-faint);
}

.license-badge, .age-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .3rem .7rem;
  font-weight: 700;
}

.license-badge {
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.license-badge:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .nav-side-left { display: none; }

  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }

  .header-inner {
    flex-wrap: wrap;
    row-gap: .4rem;
    gap: .4rem;
    height: auto;
    min-height: 72px;
    padding-block: .6rem;
  }
  .brand { min-width: 0; flex-shrink: 1; }
  .brand-logo { height: 32px; max-width: 94px; width: auto; object-fit: contain; }

  .nav-side-right { min-width: max-content; flex-shrink: 0; }
  .header-actions { gap: .35rem; flex-wrap: nowrap; }
  .header-actions .btn-sm.btn-primary { height: 34px; }
  .header-actions .btn-sm.btn-primary .btn-cap { width: 27px; }
  .header-actions .btn-sm.btn-primary .btn-center { padding-inline: .3rem; }
  .header-actions .btn-sm.btn-primary .btn-text { font-size: .8rem; }
  .header-actions .btn-ghost { height: 34px; }
  .header-actions .btn-ghost .btn-cap { width: 25px; }
  .header-actions .btn-ghost .btn-center { padding-inline: .3rem; }
  .header-actions .btn-ghost .btn-text { font-size: .8rem; }
  .btn-icon { width: 34px; height: 34px; }
  .btn-icon svg { width: 17px; height: 17px; }

  .bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    height: 72px;
    padding: 0 .5rem calc(0px + env(safe-area-inset-bottom));
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: .45rem;
    gap: .1rem;
    flex: 1;
    height: 100%;
    color: var(--text-faint);
    font-size: .72rem;
    font-weight: 600;
    transition: color var(--dur) var(--ease);
  }
  .bottom-nav-item .nav-icon { width: 34px; height: 34px; }
  .bottom-nav-item:hover,
  .bottom-nav-item:active { color: var(--gold-2); }

  @keyframes bottom-nav-play-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
  }

  .bottom-nav-play { color: var(--gold-2); }
  .bottom-nav-play .nav-icon {
    animation: bottom-nav-play-icon-pulse 2s ease-in-out infinite;
    filter:
      drop-shadow(0 0 5px rgba(242, 169, 60, .85))
      drop-shadow(0 0 11px rgba(242, 169, 60, .5));
  }
  .bottom-nav-play:hover .nav-icon,
  .bottom-nav-play:active .nav-icon { animation-play-state: paused; }
}

@media (max-width: 640px) {
  .hero {
    align-items: flex-start;
    background-image: url("assets/hero-bg-mobile.webp");
    background-position: center calc(25% + 10px);
    background-size: cover;
    min-height: clamp(540px, 108vw, 620px);
    padding-top: 7.5rem;
  }
  .hero-inner { text-align: center; }
  .hero h1 { margin-inline: auto; }
  .hero h1 .grad-text { font-size: 1.15em; }
  .hero-title { font-size: 30px; }
  .hero h1 .hero-title .grad-text { font-size: 1em; }
  .hero-subtext { font-size: .68em; top: -.1em; }
  .hero-lead { margin-inline: auto; }
  .hero-cta { justify-content: center; margin-inline: auto; max-width: none; }
}

.show-more-btn {
  display: none;
}
@media (max-width: 640px) {
  .pg-grid:not(.is-expanded) .pg-card:nth-child(n+7) {
    display: none;
  }
  .show-more-btn {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: .8rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .02);
    color: var(--text);
    font-weight: 700;
    font-size: .95rem;
    text-align: center;
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  }
  .show-more-btn:hover { border-color: var(--gold); color: var(--gold); }
}
