/* =============================================================
   OZWIN365 GROUP — Design System
   Black background • Ozwin365 brand identity (green + gold)
   Two drifting gradient stars in the background
   ============================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Core surfaces */
  --c-bg:            #000000;   /* pure black (requirement) */
  --c-bg-soft:       #06090a;
  --c-surface:       rgba(255, 255, 255, 0.04);
  --c-surface-2:     rgba(255, 255, 255, 0.06);
  --c-border:        rgba(255, 255, 255, 0.09);
  --c-border-strong: rgba(255, 255, 255, 0.16);

  /* Brand identity (from the Ozwin365 Group logo) */
  --c-green:    #05A96E;   /* OZWIN365 GROUP emerald  */
  --c-green-br: #18D98F;   /* brighter green for glow */
  --c-green-dk: #046B49;
  --c-gold:     #FFC603;   /* WIN365 gold             */
  --c-gold-br:  #FFD84A;
  --c-amber:    #FF9E1B;
  --c-teal:     #06C2A0;   /* green↔gold harmony tween */
  --c-lime:     #93D11A;

  /* Text */
  --c-text:      #EAF1EC;
  --c-text-dim:  #97a39c;
  --c-text-mute: #6a756f;
  --c-white:     #ffffff;

  /* Signature gradient (green → gold, the Ozwin365 DNA) */
  --grad-brand: linear-gradient(100deg, var(--c-green-br) 0%, var(--c-green) 46%, var(--c-gold) 100%);
  --grad-cool:  linear-gradient(135deg, var(--c-green-br), var(--c-green) 55%, var(--c-teal));
  --grad-warm:  linear-gradient(135deg, var(--c-gold-br), var(--c-gold) 55%, var(--c-amber));

  /* Typography */
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Header height */
  --header-h: 72px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

/* ---------- 3. Background: two drifting gradient stars ---------- */
.bg-stars {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(5, 169, 110, 0.13), transparent 60%),
    radial-gradient(1000px 700px at 8% 108%, rgba(255, 198, 3, 0.09), transparent 60%),
    var(--c-bg);
}

/* faint twinkle dust */
.bg-stars::after {
  content: "";
  position: absolute;
  inset: -10%;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(255,255,255,0.40), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 85% 20%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255,255,255,0.30), transparent);
  background-repeat: no-repeat;
  opacity: 0.6;
  animation: twinkle 6s ease-in-out infinite alternate;
}

.star {
  position: absolute;
  width: clamp(360px, 46vw, 620px);
  height: clamp(360px, 46vw, 620px);
  filter: blur(26px) saturate(135%);
  opacity: 0.6;
  mix-blend-mode: screen;
  will-change: transform;
}
.star svg { width: 100%; height: 100%; display: block; }

/* green star — upper left, drifts slowly */
.star--cool {
  top: -6%;
  left: -8%;
  animation: drift-cool 38s var(--ease) infinite alternate;
}
/* gold star — lower right, drifts on its own rhythm */
.star--warm {
  bottom: -10%;
  right: -8%;
  animation: drift-warm 46s var(--ease) infinite alternate;
}

@keyframes drift-cool {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%  { transform: translate(14vw, 22vh) rotate(60deg) scale(1.12); }
  66%  { transform: translate(34vw, 8vh) rotate(150deg) scale(0.92); }
  100% { transform: translate(20vw, 30vh) rotate(220deg) scale(1.06); }
}
@keyframes drift-warm {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1.04); }
  40%  { transform: translate(-18vw, -16vh) rotate(-80deg) scale(0.9); }
  70%  { transform: translate(-30vw, -4vh) rotate(-160deg) scale(1.14); }
  100% { transform: translate(-12vw, -26vh) rotate(-230deg) scale(1); }
}
@keyframes twinkle {
  0%   { opacity: 0.35; }
  100% { opacity: 0.75; }
}

/* ---------- 4. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(56px, 9vw, 110px);
  position: relative;
}
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  padding: 7px 14px;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  background: var(--c-surface);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 10px var(--c-green);
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.section-head p {
  color: var(--c-text-dim);
  font-size: clamp(1rem, 2vw, 1.12rem);
  margin-bottom: 0;
}

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 5. Buttons ---------- */
.btn {
  --pad-y: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--pad-y) 26px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  color: #04221a;
  background: var(--grad-brand);
  background-size: 160% 160%;
  background-position: 0% 50%;
  box-shadow: 0 8px 26px -8px rgba(5, 169, 110, 0.65), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.btn--primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 12px 34px -8px rgba(255, 198, 3, 0.6);
}

.btn--ghost {
  color: var(--c-text);
  background: var(--c-surface);
  border-color: var(--c-border-strong);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--c-green-br); color: #fff; }

.btn--gold {
  color: #2a2000;
  background: linear-gradient(100deg, var(--c-gold-br), var(--c-amber));
  box-shadow: 0 8px 26px -8px rgba(255, 198, 3, 0.55);
}
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- 6. Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(3, 6, 5, 0.74);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--c-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand img { height: 46px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 9px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-text-dim);
  border-radius: 10px;
}
.nav a:hover, .nav a.is-active { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

/* ---------- 6b. Games dropdown (silo menu) ---------- */
.nav-group { position: relative; display: inline-flex; align-items: center; }
.nav-caret {
  display: inline-block; width: 0; height: 0; margin-left: 7px;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; opacity: 0.6;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-group:hover .nav-caret, .nav-group:focus-within .nav-caret { transform: rotate(180deg); opacity: 1; }
.nav-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: flex; flex-direction: column; min-width: 210px;
  padding: 8px; margin-top: 2px;
  background: rgba(6, 10, 8, 0.97);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 120;
}
.nav-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 14px; }
.nav-group:hover .nav-menu, .nav-group:focus-within .nav-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}
.nav-menu a {
  padding: 9px 14px; font-size: 0.9rem; font-weight: 500;
  color: var(--c-text-dim); white-space: nowrap; border-radius: 9px;
}
.nav-menu a::after { display: none; }
.nav-menu a:hover, .nav-menu a.is-active { background: rgba(255, 255, 255, 0.06); color: #fff; }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--c-border-strong);
  border-radius: 12px;
  background: var(--c-surface);
  color: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 9vw, 96px));
  padding-bottom: clamp(48px, 8vw, 96px);
  text-align: center;
}
.hero__eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.hero h1 .line2 {
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--c-text);
  margin-top: 14px;
}
.hero__lead {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  color: var(--c-text-dim);
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 4vw, 46px);
  padding-top: 30px;
  border-top: 1px solid var(--c-border);
  max-width: 760px;
  margin-inline: auto;
}
.trust-row div { text-align: center; }
.trust-row b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  font-weight: 800;
}
.trust-row span { font-size: 0.82rem; color: var(--c-text-mute); letter-spacing: 0.02em; }

/* ---------- 8. Card base ---------- */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border-strong);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.9);
}

/* ---------- 9. Pillar / brand cards ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 240px));
  gap: clamp(12px, 1.6vw, 20px);
  justify-content: center;
}
.brand-card {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.brand-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0.9;
}
.brand-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  margin-bottom: 18px;
}
.brand-card__icon svg { width: 28px; height: 28px; }
.brand-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.brand-card__tag { font-size: 0.9rem; color: var(--c-text-dim); margin-bottom: 18px; }
.brand-card__perks { display: grid; gap: 10px; margin-bottom: 22px; }
.brand-card__perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--c-text);
}
.brand-card__perks li::before {
  content: "";
  width: 18px; height: 18px; flex: none;
  border-radius: 50%;
  background: var(--grad-brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.brand-card .btn { margin-top: auto; }
.brand-card__rtp {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-gold);
  border: 1px solid rgba(255,198,3,0.35);
  background: rgba(255,198,3,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}
/* real partner logo (when supplied) */
.brand-card__logo { height: 60px; display: flex; align-items: center; margin-bottom: 18px; }
.brand-card__logo img { max-height: 52px; width: auto; border-radius: 8px; }
/* placeholder brand slot (until real logos are supplied) */
.brand-ph { display: flex; align-items: center; gap: 13px; height: 60px; margin-bottom: 18px; }
.brand-ph__mark { width: 50px; height: 50px; flex: none; border-radius: 13px; display: grid; place-items: center; background: var(--grad-brand); }
.brand-ph__mark svg { width: 27px; height: 27px; }
.brand-ph__name { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; line-height: 1.1; }
.brand-ph__name small { display: block; font-weight: 500; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-mute); margin-top: 3px; }

/* partner brand cards — stat table (Ozwin green/gold style) */
.pcard { position: relative; padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pcard__badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px; display: inline-flex; align-items: center; gap: 5px;
}
.pcard__badge svg { width: 11px; height: 11px; }
.pcard__badge--hot { color: #2a1500; background: linear-gradient(100deg, #FFD84A, #FF8A1E); }
.pcard__badge--new { color: #04221a; background: linear-gradient(100deg, #18D98F, #05A96E); }
.pcard__badge--fav { color: #fff; background: rgba(255,61,127,0.2); border: 1px solid rgba(255,61,127,0.55); }
.pcard__plate {
  margin: 48px 18px 10px; min-height: 50px;
  display: flex; align-items: center; justify-content: center; padding: 0 18px;
}
.pcard__plate img { max-height: 90px; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.pcard__stats { padding: 16px 18px; display: grid; gap: 9px; }
.pstat { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pstat__k { font-size: 0.8rem; color: var(--c-text-dim); line-height: 1.18; }
.pstat__v {
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  padding: 6px 10px; border-radius: 8px; white-space: nowrap;
  min-width: 104px; text-align: center; flex: none;
}
.pstat__v--hl   { color: var(--c-green-br); background: rgba(5,169,110,0.14); border: 1px solid rgba(5,169,110,0.4); }
.pstat__v--rtp  { color: #04221a; background: linear-gradient(100deg, #18D98F, #05A96E); }
.pstat__v--dark { color: var(--c-text); background: rgba(255,255,255,0.05); border: 1px solid var(--c-border); }
.pcard__cta { padding: 4px 18px 18px; margin-top: auto; }

/* ---------- 10. Game cards ---------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
}
.game-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #fff;
  isolation: isolate;
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--card-grad, var(--grad-cool));
  opacity: 0.92;
}
.game-thumb { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.82));
}
.game-card span { position: relative; z-index: 3; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.game-card b { position: relative; z-index: 3; font-family: var(--font-display); font-size: 1.02rem; line-height: 1.2; }
.game-card .tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 100px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.28);
}

/* ---------- 11. Feature grid (why choose) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}
.feature {
  padding: 28px;
  border-radius: var(--radius);
}
.feature__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.15rem; }
.feature p { color: var(--c-text-dim); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- 12. Category tiles ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}
.cat {
  position: relative;
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cat:hover { transform: translateY(-4px); border-color: var(--c-border-strong); }
.cat::after {
  content: "";
  position: absolute;
  width: 130px; height: 130px;
  right: -40px; bottom: -50px;
  border-radius: 50%;
  background: var(--cat-grad, var(--grad-brand));
  filter: blur(34px);
  opacity: 0.5;
  transition: opacity 0.3s var(--ease);
}
.cat:hover::after { opacity: 0.85; }
.cat b { font-family: var(--font-display); font-size: 1.1rem; display: block; margin-bottom: 4px; position: relative; }
.cat span { font-size: 0.82rem; color: var(--c-text-dim); position: relative; }

/* ---------- 13. Stats band ---------- */
.band {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(5,169,110,0.2), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(255,198,3,0.16), transparent 55%),
    var(--c-bg-soft);
  padding: clamp(28px, 5vw, 48px);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 800;
}
.stats span { font-size: 0.86rem; color: var(--c-text-dim); }

/* ---------- 14. Split / promo teaser ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.promo-cards { display: grid; gap: 16px; }
.promo {
  display: flex; gap: 18px; align-items: center;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
}
.promo__badge {
  flex: none;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.0rem;
  color: #04221a;
  background: var(--grad-brand);
}
.promo h4 { font-size: 1.05rem; margin-bottom: 3px; }
.promo p { font-size: 0.88rem; color: var(--c-text-dim); margin-bottom: 0; }

/* ---------- 15. VIP / CTA band ---------- */
.cta-band {
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: clamp(36px, 6vw, 64px) var(--gutter);
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(5,169,110,0.22), transparent 60%),
    radial-gradient(80% 120% at 80% 100%, rgba(255,198,3,0.12), transparent 60%),
    var(--c-bg-soft);
}
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta-band p { max-width: 560px; margin: 0 auto 26px; color: var(--c-text-dim); }

/* ---------- 16. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-surface);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem;
  color: var(--c-text);
  background: none; border: 0;
}
.faq-q__icon {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
}
.faq-q__icon::before, .faq-q__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--c-gold); border-radius: 2px;
}
.faq-q__icon::before { width: 14px; height: 2px; }
.faq-q__icon::after  { width: 2px; height: 14px; transition: transform 0.25s var(--ease); }
.faq-item.is-open .faq-q__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--ease);
}
.faq-a p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--c-text-dim);
  font-size: 0.94rem;
}

/* ---------- 17. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--c-border);
  padding-block: clamp(44px, 6vw, 72px) 32px;
  margin-top: clamp(40px, 7vw, 90px);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 44px;
}
.footer-brand img { height: 54px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--c-text-dim); font-size: 0.9rem; max-width: 320px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--c-surface); border: 1px solid var(--c-border); transition: transform 0.2s var(--ease), border-color 0.2s var(--ease); }
.footer-social a:hover { transform: translateY(-3px); border-color: var(--c-green-br); }
.footer-social img { width: 20px; height: 20px; object-fit: contain; display: block; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-mute); margin-bottom: 16px;
}
.footer-col a { display: block; padding: 6px 0; font-size: 0.92rem; color: var(--c-text-dim); }
.footer-col a:hover { color: #fff; }

.footer-pay {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 22px 0;
  border-block: 1px solid var(--c-border);
  margin-bottom: 24px;
}
.footer-providers {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 22px 0;
  border-block: 1px solid var(--c-border);
  margin-bottom: 24px;
}
.footer-providers img {
  height: 22px; width: auto; max-width: 96px; object-fit: contain;
  background: #fff; border-radius: 7px; padding: 5px 9px;
  opacity: 0.88; transition: opacity 0.2s var(--ease);
}
.footer-providers img:hover { opacity: 1; }
.pay-badge {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  color: var(--c-text-dim);
  padding: 8px 14px;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: var(--c-surface);
}

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  color: var(--c-text-mute); font-size: 0.83rem;
}
.age-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--c-text-dim);
}
.age-badge b {
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--c-green);
  color: var(--c-green-br); font-size: 0.72rem;
}

/* ---------- 18. Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 19. Responsive ---------- */
@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .brand img { height: 38px; }
  .nav, .header-cta .btn--ghost { display: none; }
  .nav-toggle { display: flex; }

  .nav.is-open {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 2px;
    padding: 16px var(--gutter) 24px;
    background: rgba(3, 6, 5, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--c-border);
  }
  .nav.is-open a { padding: 13px 6px; font-size: 1.05rem; }
  .nav.is-open a::after { display: none; }

  /* Games dropdown shown inline inside the mobile menu */
  .nav.is-open .nav-group { display: flex; flex-direction: column; align-items: stretch; width: 100%; }
  .nav-caret { display: none; }
  .nav.is-open .nav-menu {
    position: static; transform: none; margin: 0; min-width: 0;
    opacity: 1; visibility: visible; pointer-events: auto;
    display: flex; flex-direction: column;
    padding: 2px 0 8px 20px;
    background: transparent; border: none; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .nav.is-open .nav-menu a { font-size: 0.98rem; padding: 10px 8px; opacity: 0.85; }

  .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .brand img { height: 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}

/* ---------- 20. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
  .star { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- 21. Inner-page helpers ---------- */
.page-hero {
  position: relative;
  text-align: center;
  padding-top: calc(var(--header-h) + clamp(40px, 7vw, 76px));
  padding-bottom: clamp(24px, 4vw, 44px);
}
.page-hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); }
.page-hero p { max-width: 640px; margin: 14px auto 0; color: var(--c-text-dim); font-size: clamp(1rem, 2vw, 1.14rem); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(28px, 4vw, 44px); }
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  color: var(--c-text-dim); padding: 9px 18px;
  border: 1px solid var(--c-border); border-radius: 100px; background: var(--c-surface);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.chip:hover, .chip.is-active { color: #04221a; background: var(--grad-brand); border-color: transparent; }

.subhead { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin: clamp(34px,5vw,54px) 0 20px; }

.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--c-text-dim); }
.prose ul { display: grid; gap: 9px; margin: 0 0 18px; padding-left: 0; }
.prose ul li { display: flex; gap: 10px; }
.prose ul li::before {
  content: ""; width: 18px; height: 18px; flex: none; margin-top: 4px; border-radius: 50%;
  background: var(--grad-brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.prose a { color: var(--c-green-br); text-decoration: underline; }

.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(14px, 2vw, 22px); }
.tier { padding: 26px 22px; text-align: center; }
.tier__name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 6px; }
.tier__req { font-size: 0.82rem; color: var(--c-text-mute); margin-bottom: 16px; }
.tier ul { display: grid; gap: 9px; text-align: left; }
.tier li { font-size: 0.86rem; color: var(--c-text-dim); display: flex; gap: 8px; }
.tier li::before { content: "✓"; color: var(--c-green-br); font-weight: 700; }

/* ---------- 22. KOL / creator video cards (portrait showcase) ---------- */
.kol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.6vw, 22px); }
@media (max-width: 860px) { .kol-grid { grid-template-columns: repeat(2, 1fr); } }
.kol-card { display: flex; flex-direction: column; gap: 13px; margin: 0; }
.kol-video {
  position: relative; display: block; aspect-ratio: 9 / 16; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--c-border);
  background: var(--thumb-grad, var(--grad-cool));
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.kol-video:hover { transform: translateY(-5px); border-color: var(--c-border-strong); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.9); }
.kol-video::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, transparent 38%, transparent 62%, rgba(0,0,0,0.28) 100%); }
.kol-poster { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- 24. Editorial / SEO-GEO content ---------- */
.prose-wide { max-width: 860px; margin-inline: auto; }
.lead-answer { font-size: clamp(1.08rem, 2.2vw, 1.34rem); line-height: 1.6; color: var(--c-text); }
.lead-answer strong { color: var(--c-green-br); }
.note {
  border-left: 3px solid var(--c-gold); background: var(--c-surface);
  border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 24px 0 0;
  color: var(--c-text-dim); font-size: 0.94rem;
}
.note strong { color: var(--c-text); }
.cmp-wrap { overflow-x: auto; border: 1px solid var(--c-border); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.cmp-table th, .cmp-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--c-border); font-size: 0.9rem; vertical-align: middle; }
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table thead th { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--c-text-mute); background: rgba(255,255,255,0.03); }
.cmp-table tbody tr { transition: background 0.2s var(--ease); }
.cmp-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.cmp-table .cmp-brand { font-family: var(--font-display); font-weight: 700; color: #fff; }
.cmp-table .cmp-npr { color: var(--c-green-br); font-weight: 600; }
.steps { display: grid; gap: 18px; counter-reset: step; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step::before { counter-increment: step; content: counter(step); flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: #04221a; background: var(--grad-brand); }
.step h4 { margin: 6px 0 4px; font-size: 1.06rem; }
.step p { margin: 0; color: var(--c-text-dim); font-size: 0.92rem; }
.checklist { display: grid; gap: 11px; padding: 0; margin: 0; }
.checklist li { list-style: none; display: flex; gap: 12px; align-items: center; color: var(--c-text); font-size: 0.95rem; }
.checklist li::before {
  content: ""; width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--grad-brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }
.kol-logo { position: absolute; z-index: 2; top: 12px; right: 12px; height: 24px; width: auto; opacity: 0.95; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.55)); }
.kol-play {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,0.92);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.kol-video:hover .kol-play { transform: translate(-50%, -50%) scale(1.12); background: rgba(5,169,110,0.6); }
.kol-play svg { width: 22px; height: 22px; margin-left: 3px; fill: #fff; }
.kol-ava { flex: none; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #04221a; background: var(--grad-brand); width: 42px; height: 42px; font-size: 0.95rem; }
.kol-ava--sm { width: 30px; height: 30px; font-size: 0.7rem; border: 2px solid rgba(255,255,255,0.65); }
.kol-person { position: absolute; z-index: 2; left: 12px; right: 12px; bottom: 12px; display: flex; align-items: center; gap: 9px; }
.kol-person__txt { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.kol-person__role { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--c-gold); text-shadow: 0 1px 3px rgba(0,0,0,0.7); }
.kol-person__name { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.65); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kol-cap { padding-left: 2px; }
.kol-role { display: block; font-family: var(--font-display); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-green-br); margin-bottom: 2px; }
.kol-cap b { font-family: var(--font-display); font-size: 1.02rem; }

/* ---------- 23. Video lightbox (portrait creator reels) ---------- */
.video-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.video-modal.is-open { display: flex; }
.video-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.82); backdrop-filter: blur(8px); }
.video-modal__dialog {
  position: relative; z-index: 1; display: flex; flex-direction: column; max-width: 92vw;
  background: #090c0b; border: 1px solid var(--c-border-strong); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 40px 110px -30px rgba(0,0,0,0.95); animation: modal-in 0.3s var(--ease);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.video-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--c-border-strong); background: rgba(0,0,0,0.55); color: #fff;
  display: grid; place-items: center; font-size: 1.4rem; line-height: 1;
}
.video-modal__close:hover { border-color: var(--c-green-br); color: var(--c-green-br); }
.video-modal__frame { position: relative; height: 70vh; max-height: 760px; aspect-ratio: 9 / 16; max-width: 92vw; background: #000; }
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__ph { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px; background: var(--grad-cool); color: #04221a; }
.video-modal__ph b { font-family: var(--font-display); font-size: 1.15rem; display: block; margin-bottom: 4px; }
.video-modal__ph span { font-size: 0.9rem; opacity: 0.85; }
.video-modal__bar { display: flex; align-items: center; gap: 13px; padding: 14px 18px; }
.video-modal__bar .kol-ava { width: 44px; height: 44px; }
.video-modal__bar b { font-family: var(--font-display); display: block; font-size: 0.98rem; }
.video-modal__bar small { font-size: 0.8rem; color: var(--c-text-dim); }
.video-modal__bar .btn { margin-left: auto; }
@media (max-width: 540px) {
  .video-modal__bar .btn span { display: none; }
  .video-modal__frame { height: auto; width: 86vw; }
}
