/* ==========================================================================
   NV Casino — design system
   ========================================================================== */
:root {
  --bg: #08000d;
  --bg-1: #110312;
  --bg-2: #160621;
  --bg-3: #1f0a2e;
  --panel: #15071a;
  --panel-2: #1d0a26;
  --border: #2a1133;
  --border-strong: #3d1f4a;
  --text: #f1e8f5;
  --text-muted: #a294b0;
  --text-dim: #6e607d;

  /* dual accent — gold for premium / red for hot */
  --gold: #f5b840;
  --gold-2: #ffd166;
  --gold-deep: #b88826;
  --red: #e63946;
  --red-2: #ff5263;
  --red-deep: #b41f2c;

  /* Brand pink — primary CTA color */
  --pink: #ec1d6e;
  --pink-2: #ff3d8a;
  --pink-deep: #a8104c;

  /* Soft purple — secondary action */
  --purple: #5d4c8c;
  --purple-2: #75619e;
  --purple-deep: #3a2f5c;

  --good: #22c55e;
  --info: #6da9ff;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 4px rgba(0,0,0,.4);
  --shadow: 0 12px 32px -8px rgba(0,0,0,.55), 0 2px 6px rgba(0,0,0,.4);
  --shadow-lg: 0 28px 80px -16px rgba(0,0,0,.7), 0 4px 12px rgba(0,0,0,.5);
  --glow-gold: 0 0 0 1px rgba(245,184,64,.35), 0 12px 40px -8px rgba(245,184,64,.35);
  --glow-red: 0 0 0 1px rgba(230,57,70,.35), 0 12px 40px -8px rgba(230,57,70,.4);

  --max: 1280px;
  --gutter: clamp(16px, 4vw, 40px);

  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Global ambient background — deep purple/black with soft gold + red glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(700px 500px at 12% -5%, rgba(245,184,64,.10), transparent 60%),
    radial-gradient(800px 600px at 92% 10%, rgba(230,57,70,.10), transparent 60%),
    radial-gradient(900px 700px at 50% 100%, rgba(120,40,200,.08), transparent 65%),
    linear-gradient(180deg, #0c0312 0%, #08000d 60%, #08000d 100%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, black, transparent 90%);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: #1a0a05; }

/* Layout helpers */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.stack > * + * { margin-top: var(--stack, 1rem); }
.row { display: flex; align-items: center; gap: 12px; }

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; margin: 0; line-height: 1.05; }
h1 { font-size: clamp(40px, 6.5vw, 76px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); letter-spacing: -.01em; }
p { margin: 0; color: var(--text-muted); }
.lede { font-size: 17px; color: var(--text-muted); max-width: 60ch; }

.section { padding-block: clamp(56px, 8vw, 96px); position: relative; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head .heading { max-width: 640px; }
.section-head h2 { margin-bottom: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, var(--pink-2), var(--pink));
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(236,29,110,.55), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { box-shadow: 0 12px 32px -6px rgba(236,29,110,.7), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-red {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(230,57,70,.55), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-purple {
  background: linear-gradient(180deg, var(--purple-2), var(--purple));
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(93,76,140,.45), inset 0 1px 0 rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.06);
}
.btn-purple:hover { box-shadow: 0 10px 24px -4px rgba(93,76,140,.65), inset 0 1px 0 rgba(255,255,255,.22); }
.btn-red:hover { box-shadow: 0 12px 32px -6px rgba(230,57,70,.7), inset 0 1px 0 rgba(255,255,255,.18); }
.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #5a2c6c; }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: rgba(245,184,64,.4);
}
.btn-outline:hover { background: rgba(245,184,64,.08); border-color: var(--gold); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* Header */
.topbar {
  background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.2));
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar a, .topbar .topbar-meta { color: var(--text-muted); transition: color .15s; }
.topbar a:hover { color: var(--gold); }
.topbar-meta { cursor: default; }
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 11px;
}
.age-badge .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--red); box-shadow: 0 0 8px var(--red); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 0, 13, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 30px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav a.active {
  color: var(--text);
  background: rgba(245,184,64,.10);
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--gold);
}
.header-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger - hidden on desktop */
.hamburger { display: none; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 8vw, 96px) clamp(64px, 10vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .red { color: var(--red-2); }
.hero h1 .small {
  display: block;
  font-size: .42em;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-family: var(--font-body);
  text-transform: uppercase;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245,184,64,.10);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.trust-item small {
  display: block;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.trust-item strong { font-size: 14px; }

/* Hero offer card */
.offer-card {
  position: relative;
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(230,57,70,.18), transparent 60%),
    radial-gradient(500px 400px at 0% 100%, rgba(245,184,64,.18), transparent 65%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(245,184,64,.55), transparent 35%, transparent 65%, rgba(230,57,70,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(230,57,70,.15);
  color: var(--red-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.offer-tag .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--red-2); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(230,57,70,.6); }
  50% { opacity: .8; box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}
.offer-card h2,
.offer-card .offer-amount {
  font-size: clamp(36px, 4vw, 56px);
  margin: 16px 0 8px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.offer-card h2 .euro,
.offer-card .offer-amount .euro { color: var(--gold); }
.offer-card .sub { color: var(--text-muted); font-size: 15px; }

.offer-bonus-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 24px 0;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.tier {
  background: rgba(15,4,22,.7);
  padding: 16px 14px;
  text-align: center;
}
.tier .label { font-size: 10px; letter-spacing: .12em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 6px; }
.tier .val { font-size: 18px; font-weight: 700; color: var(--text); font-family: var(--font-display); letter-spacing: -.01em; }
.tier .spin { color: var(--gold); font-size: 12px; margin-top: 2px; }

.offer-terms {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.offer-terms span strong { color: var(--text-muted); margin-right: 6px; }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.stat {
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent), var(--panel);
  padding: 24px 28px;
}
.stat .n {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
}
.stat .n .unit { color: var(--gold); font-size: .7em; margin-left: 4px; }
.stat .lbl { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* Category chips */
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { color: var(--text); border-color: var(--border-strong); }
.chip.active {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border-color: var(--gold);
  color: #1a0a05;
  font-weight: 600;
}
.chip .count {
  background: rgba(0,0,0,.15);
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.chip:not(.active) .count { background: rgba(255,255,255,.06); color: var(--text-dim); }

/* Game grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.game-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.game-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
}
.game-art .game-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.game-art .game-sub {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.game-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85) 60%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.85);
}
.game-meta .provider {
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.25;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  min-width: 0;
}
.game-meta .rtp {
  color: var(--gold-2);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  flex: 0 0 auto;
}
.game-corner {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.game-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.game-tag.hot { background: rgba(230,57,70,.85); color: #fff; }
.game-tag.new { background: rgba(245,184,64,.92); color: #1a0a05; }
.game-tag.jackpot { background: rgba(108,73,219,.85); color: #fff; }
.game-tag.live { background: rgba(34,197,94,.85); color: #051a0c; }

/* Game art variants — each card gets a distinct gradient via :nth-child */
.art-g1 { background: linear-gradient(135deg, #ff6a3d 0%, #c41444 60%, #4a0826 100%); }
.art-g2 { background: linear-gradient(135deg, #ffb347 0%, #d9831a 50%, #5a3208 100%); }
.art-g3 { background: linear-gradient(135deg, #a855f7 0%, #5b21b6 50%, #1e0a3e 100%); }
.art-g4 { background: linear-gradient(135deg, #06b6d4 0%, #0e7490 50%, #0c2a30 100%); }
.art-g5 { background: linear-gradient(135deg, #f43f5e 0%, #831843 50%, #2d0716 100%); }
.art-g6 { background: linear-gradient(135deg, #fbbf24 0%, #ea580c 50%, #4a1206 100%); }
.art-g7 { background: linear-gradient(135deg, #10b981 0%, #064e3b 50%, #052218 100%); }
.art-g8 { background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 50%, #0b1633 100%); }
.art-g9 { background: linear-gradient(135deg, #ec4899 0%, #831843 50%, #2c0a1a 100%); }
.art-g10 { background: linear-gradient(135deg, #f59e0b 0%, #92400e 50%, #2a1206 100%); }
.art-g11 { background: linear-gradient(135deg, #8b5cf6 0%, #4c1d95 50%, #1a0833 100%); }
.art-g12 { background: linear-gradient(135deg, #14b8a6 0%, #0f766e 50%, #052e2c 100%); }

/* Real thumbnail variant — fills card, suppresses decorative overlays */
.game-art.has-thumb { padding: 0; }
.game-art .game-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.game-art.has-thumb::before,
.game-art.has-thumb::after { display: none; }

/* Thumbnail cards: stack thumb + meta strip so artwork is never obscured */
.game-card:has(.has-thumb) {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
}
.game-card:has(.has-thumb) .game-art {
  position: relative;
  aspect-ratio: 3/4;
  flex: 0 0 auto;
}
.game-card:has(.has-thumb) .game-meta {
  position: static;
  background: var(--panel-2);
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  font-size: 11px;
}
.game-card .game-corner { z-index: 2; }

/* Decorative motif in each game art */
.game-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(0,0,0,.4), transparent 50%);
  mix-blend-mode: overlay;
}
.game-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 18px);
  mix-blend-mode: overlay;
  opacity: .5;
}

/* Bonus / tier cards */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.bonus-card.feature {
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(245,184,64,.16), transparent 70%),
    radial-gradient(400px 300px at 0% 100%, rgba(230,57,70,.12), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  border-color: rgba(245,184,64,.4);
}
.bonus-card .step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245,184,64,.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bonus-card h3,
.bonus-card .bonus-amount {
  font-size: 32px;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.bonus-card h3 .pct,
.bonus-card .bonus-amount .pct { color: var(--gold); }
.bonus-card .desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.bonus-card .perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.bonus-card .perks li { display: flex; align-items: start; gap: 10px; }
.bonus-card .perks li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
}

/* Providers strip */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.provider {
  background: var(--panel);
  padding: 28px 18px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: 16px;
  color: var(--text-muted);
  transition: color .15s, background .15s;
  text-align: center;
  cursor: pointer;
}
.provider:hover { color: var(--gold); background: var(--panel-2); }
.provider small { display: block; font-size: 10px; font-weight: 500; letter-spacing: .08em; color: var(--text-dim); text-transform: uppercase; margin-top: 4px; }

/* Payment methods strip */
.payments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.payment {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  transition: border-color .15s, background .15s, transform .15s;
}
.payment:hover { border-color: var(--border-strong); background: var(--panel-2); transform: translateY(-2px); }
.payment .pay-logo {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
}
.payment .pay-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.payment .pay-name {
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--text-muted);
  font-weight: 600;
}
.payment .pay-ico {
  width: 36px;
  height: 24px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

/* Featured "casino row" / live game preview */
.live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.live-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.live-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.live-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.live-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.live-card:hover .live-art img { transform: scale(1.04); }
.live-art .dealer {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  border: 3px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  position: absolute;
  inset: 0;
  margin: auto;
}
.live-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.9) 70%);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.live-meta .title { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.live-meta .seats { font-size: 11px; color: rgba(255,255,255,.7); }
.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.live-badge .pulse { width: 5px; height: 5px; background: #fff; border-radius: 999px; animation: pulse 1.6s infinite; }
.live-min {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-2);
}

/* Live art backgrounds */
.live-bg-1 { background: radial-gradient(circle at 50% 40%, #2a6b3a 0%, #0d2a16 65%); }
.live-bg-2 { background: radial-gradient(circle at 50% 40%, #6b1b2a 0%, #2a0710 65%); }
.live-bg-3 { background: radial-gradient(circle at 50% 40%, #1a2d6b 0%, #07112a 65%); }
.live-bg-4 { background: radial-gradient(circle at 50% 40%, #6b5b1a 0%, #2a2007 65%); }
.live-bg-1::after, .live-bg-2::after, .live-bg-3::after, .live-bg-4::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.4), transparent 60%);
}

/* Feature: why us */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .15s, transform .15s;
}
.feature:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.feature .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245,184,64,.18), rgba(245,184,64,.04));
  color: var(--gold);
  margin-bottom: 16px;
}
.feature.red .ico { background: linear-gradient(135deg, rgba(230,57,70,.18), rgba(230,57,70,.04)); color: var(--red-2); }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { font-size: 13.5px; line-height: 1.55; }

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s, background .15s;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--gold);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: var(--border-strong); background: var(--panel-2); }
.faq-item .ans {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, transparent, var(--bg-1));
  border-top: 1px solid var(--border);
  padding-top: 64px;
  margin-top: 56px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  align-items: start;
}
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 42ch; color: var(--text-muted); }
.footer-licences {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.licence {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .02em;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer-updated {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: .02em;
}
.footer-updated span { color: var(--gold); }
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.trust-badge {
  background: #fff;
  color: #0a0a0a;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  line-height: 1;
  box-shadow: 0 4px 14px -2px rgba(0,0,0,.4);
}
.trust-badge .accent.orange { color: #f37020; }
.trust-badge .accent.purple { color: #5b2b8a; }
.trust-badge .accent.cyan { background: #41c8e8; color: #000; padding: 3px 6px; border-radius: 4px; margin-right: -2px; }
.trust-badge .accent.dark { background: #1a1a1a; color: #fff; padding: 3px 6px; border-radius: 4px; }

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.footer-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.footer-links a:hover { color: var(--gold); }
.footer-links .footer-link-disabled {
  color: var(--text);
  font-size: 14px;
  cursor: default;
  opacity: .85;
}

.footer-copy {
  text-align: center;
  padding: 24px 0 40px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Marquee strip */
.marquee {
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.015);
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item .star { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .2s;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(8px);
  transition: transform .2s;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.modal-tab {
  padding: 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .15s;
}
.modal-tab.active { color: var(--text); border-bottom-color: var(--gold); background: rgba(245,184,64,.06); }
.modal-body { padding: 28px; }
.modal-body h2 { font-size: 24px; margin-bottom: 6px; }
.modal-body p { font-size: 14px; margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  z-index: 2;
}
.modal-close:hover { background: rgba(255,255,255,.12); color: var(--text); }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.field label { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select {
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color .15s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-meta {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
}
.form-meta a { color: var(--gold); }
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: var(--text-dim);
  font-size: 12px;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* Sub-page hero */
.subhero {
  padding-block: clamp(48px, 7vw, 80px) 24px;
}
.subhero h1 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 16px; }
.subhero .lede { font-size: 18px; max-width: 64ch; }
.breadcrumb {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-dim); }
.breadcrumb .current { color: var(--gold); }

/* Bonus offer list (sub page) */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-row {
  display: grid;
  grid-template-columns: 200px 1fr auto auto;
  gap: 24px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color .2s, background .2s, transform .15s;
}
.offer-row:hover { border-color: var(--border-strong); background: var(--panel-2); }
.offer-row .visual {
  height: 100px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.offer-row .visual .big { font-size: 32px; line-height: 1; letter-spacing: -.02em; }
.offer-row .visual .small { font-size: 11px; opacity: .85; text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
.offer-row .info h3 { font-size: 18px; margin-bottom: 4px; }
.offer-row .info p { font-size: 13.5px; }
.offer-row .terms {
  font-size: 11px;
  color: var(--text-dim);
  text-align: right;
}
.offer-row .terms strong { color: var(--text-muted); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -.04em;
  color: rgba(245,184,64,.15);
  line-height: 1;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; max-width: 80%; }
.step-card p { font-size: 13.5px; }

/* App page mockup */
.app-mockup-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.phone-frame {
  position: relative;
  width: 280px;
  margin: 0 auto;
  aspect-ratio: 280 / 580;
  background: linear-gradient(160deg, #1a0a26, #08000d);
  border-radius: 44px;
  padding: 12px;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), inset 0 0 0 6px #000;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 16px 22px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 14px 14px;
}
.phone-logo { height: 16px; opacity: .9; }
.phone-coin {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a0a05;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
}
.phone-banner {
  margin: 0 12px 12px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(230,57,70,.4), transparent 60%),
    linear-gradient(135deg, #4a0710, #2a0710);
  padding: 14px;
}
.phone-banner .tiny { font-size: 9px; color: var(--gold-2); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.phone-banner .big { font-size: 18px; font-weight: 800; font-family: var(--font-display); margin-top: 4px; letter-spacing: -.02em; }
.phone-banner .small { font-size: 10px; color: var(--text-muted); margin-top: 4px; }
.phone-tabs {
  display: flex;
  gap: 6px;
  padding: 0 12px 12px;
}
.phone-tabs .tab {
  background: rgba(255,255,255,.05);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
}
.phone-tabs .tab.active { background: var(--gold); color: #1a0a05; }
.phone-games {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 0 12px 12px;
}
.phone-game {
  aspect-ratio: 3/4;
  border-radius: 8px;
}
.phone-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 0 14px;
  border-top: 1px solid var(--border);
  background: var(--panel-2);
}
.phone-nav .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: var(--text-dim);
  font-weight: 600;
}
.phone-nav .item.active { color: var(--gold); }
.phone-nav .ico { width: 18px; height: 18px; }

.qr {
  width: 120px;
  height: 120px;
  background:
    linear-gradient(90deg, transparent 4px, #fff 4px) 0 0 / 12px 12px,
    linear-gradient(180deg, transparent 4px, #fff 4px) 0 0 / 12px 12px,
    #15071a;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  position: relative;
}
.qr::before, .qr::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 5px solid #fff;
  background: #15071a;
}
.qr::before { top: 8px; left: 8px; }
.qr::after { top: 8px; right: 8px; }

.store-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--border-strong);
  padding: 10px 16px;
  border-radius: 12px;
  transition: border-color .15s;
}
.store-btn:hover { border-color: var(--gold); }
.store-btn small { display: block; font-size: 10px; color: var(--text-dim); line-height: 1; letter-spacing: .05em; }
.store-btn strong { font-size: 14px; font-family: var(--font-display); letter-spacing: -.005em; }

/* Toast / promo strip */
.promo-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px var(--gutter);
  background: linear-gradient(90deg, rgba(230,57,70,.15), rgba(245,184,64,.10), transparent);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.promo-strip strong { color: var(--text); }
.promo-strip .pill {
  background: var(--red);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.promo-strip .spacer { flex: 1; }
.promo-strip .promo-cta { color: var(--gold); font-weight: 600; }

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .providers-grid { grid-template-columns: repeat(4, 1fr); }
  .live-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-trust { align-items: flex-start; }
  .trust-badges { justify-content: flex-start; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq { grid-template-columns: 1fr; }
  .app-mockup-wrap { grid-template-columns: 1fr; }
  .offer-row { grid-template-columns: 1fr; gap: 14px; }
  .offer-row .terms { text-align: left; }
}
/* ==========================================================================
   Header — responsive refinements
   ========================================================================== */

/* Topbar wraps on narrow screens */
@media (max-width: 1100px) {
  .topbar { font-size: 11px; }
  .topbar-inner { gap: 12px; }
  .topbar-left, .topbar-right { gap: 12px; flex-wrap: wrap; }
  .header-inner { gap: 16px; height: 70px; }
  .nav { gap: 0; }
  .nav a { padding: 8px 10px; font-size: 13px; }
}

/* Intermediate tablet / small-desktop: nav becomes hamburger */
@media (max-width: 960px) {
  .nav { display: none; }
  .hamburger {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
  }
  /* Keep both CTAs visible on tablet */
  .header-cta { gap: 8px; }
  .header-cta .btn-sm { padding: 9px 14px; font-size: 12px; }
}

/* Phone: drop the secondary login button and the topbar */
@media (max-width: 640px) {
  .promo-strip { font-size: 12px; padding: 8px 14px; gap: 8px; flex-wrap: wrap; justify-content: center; text-align: center; }
  .promo-strip .spacer { display: none; }
  .topbar { display: none; }
  .header-inner { height: 60px; gap: 10px; }
  .brand img { height: 24px; }
  .header-cta .btn-ghost,
  .header-cta .btn-purple { display: none; }
  .header-cta .btn-primary { padding: 8px 14px; font-size: 12px; }

  /* Layout fallbacks restored from prior 700px block */
  .stat-strip { grid-template-columns: repeat(2, 1fr); margin-top: -20px; }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 16px 22px; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-bonus-tiers { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
  .offer-card { padding: 24px; }
}


/* ==========================================================================
   SEO / accessibility additions
   ========================================================================== */

/* Skip-to-content link — hidden until keyboard focus */
.skip-to-content {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-200%);
  padding: 12px 18px;
  background: var(--gold);
  color: #1a0a05;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 12px 0;
  z-index: 9999;
  text-decoration: none;
  transition: transform .15s ease;
}
.skip-to-content:focus,
.skip-to-content:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* Visually-hidden helper for SR-only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus rings — visible only on keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[role="button"]:focus-visible,
details > summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

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


/* ==========================================================================
   Hero Zeus character + refined header
   ========================================================================== */

/* Zeus decorative — emerges from right edge of hero */
.hero,
.subhero {
  position: relative;
  overflow: hidden;
}
.hero-zeus {
  position: absolute;
  bottom: -2%;
  right: -2%;
  height: 92%;
  width: auto;
  max-width: 46%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  filter: drop-shadow(0 0 60px rgba(245,184,64,.18));
  animation: zeusFloat 9s ease-in-out infinite;
}
@keyframes zeusFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero .container,
.subhero .container {
  position: relative;
  z-index: 2;
}

/* Subhero Zeus — same treatment, slightly smaller */
.subhero .hero-zeus {
  height: 88%;
  right: -3%;
  max-width: 42%;
  opacity: .9;
}

/* Hide Zeus when layout becomes single-column */
@media (max-width: 1100px) {
  .hero-zeus { opacity: .25; max-width: 38%; }
}
@media (max-width: 900px) {
  .hero-zeus { display: none; }
}

/* ---- Header refinements (match brand reference) ---- */
.header {
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: linear-gradient(180deg, rgba(8,0,13,.85), rgba(8,0,13,.65));
  border-bottom: 1px solid rgba(245,184,64,.08);
}

/* Make nav links a bit more prominent — closer to reference */
.nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text);
  opacity: .85;
}
.nav a:hover {
  opacity: 1;
  color: var(--text);
  background: transparent;
}
.nav a.active {
  opacity: 1;
  background: transparent;
  color: var(--pink-2);
}
.nav a.active::after {
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

/* Header CTAs — pill-shaped, solid colors per reference */
.header-cta .btn-sm {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 999px;
  font-weight: 600;
}
.header-cta .btn-purple,
.header-cta .btn-ghost {
  border: 0;
  background: var(--purple);
  color: #fff;
}
.header-cta .btn-purple:hover,
.header-cta .btn-ghost:hover {
  background: var(--purple-2);
}
.header-cta .btn-primary {
  background: var(--pink);
  color: #fff;
  border: 0;
  box-shadow: 0 6px 18px -4px rgba(236,29,110,.5);
}
.header-cta .btn-primary:hover {
  background: var(--pink-2);
  box-shadow: 0 10px 24px -4px rgba(236,29,110,.7);
}


/* ==========================================================================
   Mobile nav drawer (injected by redirect.js when hamburger is clicked)
   ========================================================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(8, 0, 13, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-left: 1px solid var(--border-strong);
  padding: 64px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: -28px 0 60px rgba(0,0,0,.6);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.08); color: var(--pink-2); }
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.mobile-nav-list a {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid transparent;
  transition: background .15s, border-color .15s;
}
.mobile-nav-list a:hover { background: rgba(255,255,255,.04); border-color: var(--border); }
.mobile-nav-list a.active {
  background: rgba(236,29,110,.10);
  border-color: rgba(236,29,110,.3);
  color: var(--pink-2);
  font-weight: 600;
}
.mobile-nav-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}
.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  font-size: 13px;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-nav, .mobile-nav-panel { transition: none; }
}


/* ==========================================================================
   App page — phone frame with real screenshot
   ========================================================================== */
.phone-frame-image {
  width: 320px;
  aspect-ratio: 735 / 1392;
  padding: 10px;
}
.phone-frame-image .phone-screen {
  background: #08000d;
  border-radius: 36px;
}
.phone-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone-frame-image .phone-notch {
  width: 96px;
  height: 26px;
}

@media (max-width: 1100px) {
  .phone-frame-image { width: 280px; }
}
@media (max-width: 640px) {
  .phone-frame-image { width: 240px; }
}


/* ==========================================================================
   SEO content / long-form review article
   ========================================================================== */
.seo-content {
  padding-block: 24px 64px;
}
.seo-article {
  max-width: 880px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
}
.seo-head { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px dashed var(--border); }
.seo-head .eyebrow { display: block; margin-bottom: 8px; font-size: 11px; }
.seo-head h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -.01em;
}
.seo-lede {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.seo-article h3 {
  font-size: 18px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 36px 0 12px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 24px;
}
.seo-article h3:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.seo-article h4 {
  font-size: 14px;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .02em;
  margin: 24px 0 10px;
  text-transform: none;
}

.seo-article p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 14px;
}
.seo-article p strong { color: var(--text); font-weight: 600; }
.seo-article a {
  color: var(--pink-2);
  text-decoration: underline;
  text-decoration-color: rgba(255,61,138,.4);
  text-underline-offset: 3px;
  transition: color .12s, text-decoration-color .12s;
}
.seo-article a:hover {
  color: var(--gold-2);
  text-decoration-color: var(--gold);
}

.seo-list {
  margin: 0 0 16px;
  padding: 0 0 0 18px;
  font-size: 14px;
  color: var(--text-muted);
}
.seo-list li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.seo-list li::marker { color: var(--gold); }
.seo-list strong { color: var(--text); }

/* Tables */
.seo-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin: 14px 0 18px;
}
.seo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.seo-table th,
.seo-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.seo-table tr:last-child th,
.seo-table tr:last-child td { border-bottom: 0; }
.seo-table thead th {
  background: rgba(245,184,64,.06);
  color: var(--gold-2);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 11px;
  border-bottom: 1px solid var(--border-strong);
}
.seo-table tbody th {
  color: var(--text);
  font-weight: 600;
  background: rgba(255,255,255,.02);
  width: 38%;
}
.seo-table tbody td { color: var(--text-muted); }
.seo-table a { color: var(--pink-2); }

/* Callouts */
.seo-callout {
  background: rgba(245,184,64,.06);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  margin: 18px 0;
  font-size: 13.5px;
  color: var(--text);
}
.seo-callout strong { color: var(--gold-2); }
.seo-callout-warn {
  background: rgba(230,57,70,.06);
  border-left-color: var(--red-2);
}
.seo-callout-warn strong { color: var(--red-2); }

/* Pros & Cons */
.seo-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 24px;
}
.seo-pros,
.seo-cons {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.seo-pros { border-left: 3px solid #22c55e; }
.seo-cons { border-left: 3px solid var(--red-2); }
.seo-proscons h4 {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.seo-pros h4 { color: #22c55e; }
.seo-cons h4 { color: var(--red-2); }
.seo-proscons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-proscons li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.seo-proscons li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.seo-pros li::before { content: "+"; color: #22c55e; }
.seo-cons li::before { content: "−"; color: var(--red-2); }

/* Footer of article */
.seo-foot {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-dim);
}
.seo-foot-meta { display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 700px) {
  .seo-proscons { grid-template-columns: 1fr; }
  .seo-table tbody th { width: auto; }
  .seo-article { padding: 24px 18px; }
}

/* ==========================================================================
   Mobile UX hardening (375–700px)
   ========================================================================== */

/* Safety net: belt-and-braces guard against accidental horizontal scroll */
@media (max-width: 700px) {
  html, body { overflow-x: hidden; }
}

/* min-width:0 lets grid/flex children shrink below their content size —
   without this, long unbreakable words push children past their grid track */
.seo-pros, .seo-cons,
.bonus-card, .feature, .game-card, .live-card,
.stat, .payment, .provider { min-width: 0; }

/* Long Norwegian compound words must break softly to fit narrow cells */
.seo-proscons li,
.seo-table th, .seo-table td,
.seo-list li,
.seo-article p,
.seo-article h1,
.seo-article h2,
.seo-article h3,
.seo-article h4 { overflow-wrap: anywhere; }

/* SEO tables: scroll affordance + cell tightening on phones */
.seo-table-wrap {
  position: relative;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 700px) {
  .seo-table { font-size: 12px; }
  .seo-table th, .seo-table td { padding: 8px 10px; }
  /* Right-edge fade hint that the table scrolls horizontally */
  .seo-table-wrap::after {
    content: "";
    position: absolute;
    top: 1px; right: 1px; bottom: 1px;
    width: 28px;
    background: linear-gradient(90deg, transparent, rgba(8,0,13,.85) 70%);
    pointer-events: none;
    border-radius: 0 9px 9px 0;
  }
}

/* Below 540px: collapse 2-up grids to single column for breathing room */
@media (max-width: 540px) {
  .live-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .payments { grid-template-columns: repeat(2, 1fr); }
}

/* Refined hero / offer card / stat strip for narrow phones */
@media (max-width: 640px) {
  .offer-card { padding: 22px 18px; }
  .offer-card h2,
  .offer-card .offer-amount { font-size: clamp(28px, 8vw, 42px); }
  .offer-bonus-tiers { gap: 8px; }
  .stat { padding: 18px 16px; }
  .stat .n { font-size: 26px; }
  .stat .lbl { font-size: 12px; }
  .hero-cta { flex-wrap: wrap; }
  .hero-cta .btn { flex: 1 1 auto; }
  .section-head { gap: 16px; }
  /* Footer compactness */
  .footer-licences, .trust-badges { flex-wrap: wrap; }
}

/* Sub-480px: tighten container + section + typography */
@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding: 56px 0; }
  h1 { font-size: 36px; line-height: 1.05; letter-spacing: -.02em; }
  .seo-head h2, .section-head h2, .seo-article h2 { font-size: 26px; }
  .seo-article h3 { font-size: 20px; }
  .seo-article h4 { font-size: 17px; }
  .lede { font-size: 15px; }
  /* Section CTA buttons (e.g. "Se alle 7 000 spill") get their own line */
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head > .btn { align-self: stretch; text-align: center; justify-content: center; }
}

/* Hit targets — WCAG recommends 44×44px minimum for tappable controls */
@media (max-width: 640px) {
  .faq-item summary { padding: 16px 18px; min-height: 52px; }
  .header-cta .btn-sm { min-height: 40px; padding: 10px 16px; }
  .nav a, .footer-links a { padding-top: 10px; padding-bottom: 10px; }
  .mobile-nav-list a { min-height: 48px; }
}

/* Promo strip CTA: ensure it stays tappable when the strip wraps */
@media (max-width: 640px) {
  .promo-strip { padding: 10px 14px; }
  .promo-strip .promo-cta { padding: 4px 8px; }
}

/* ==========================================================================
   POST-LAUNCH FIXES
   ========================================================================== */

/* Solid-fill buttons must always show white label text, even when a host
   stylesheet (e.g. WordPress global styles) tries to recolour links. */
.btn-primary, a.btn-primary,
.btn-red, a.btn-red,
.btn-purple, a.btn-purple { color: #fff !important; }

/* Prevent grid items from forcing horizontal overflow / squished tracks.
   (1fr defaults to minmax(auto,1fr); min-width:0 lets tracks shrink.) */
.bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bonus-card, .feature, .game-card, .live-card,
.provider, .payment, .stat, .seo-proscons > * { min-width: 0; }

/* Make the troubleshooting / offer rows reflow with flexbox instead of a
   fragile 4-track grid, so the text column never collapses to one word. */
.offer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 22px;
  row-gap: 14px;
}
.offer-row .visual { flex: 0 0 180px; width: 180px; }
.offer-row .info { flex: 1 1 300px; min-width: 0; }
.offer-row .info p { font-size: 14px; line-height: 1.55; }
.offer-row .terms { flex: 0 0 auto; text-align: left; }
.offer-row > .btn { flex: 0 0 auto; margin-left: auto; }
@media (max-width: 680px) {
  .offer-row .visual { flex-basis: 100%; width: 100%; }
  .offer-row > .btn { margin-left: 0; width: 100%; }
}

/* ==========================================================================
   RO additions — crypto payment pills + VIP tier ladder
   ========================================================================== */
.flag-ro {
  display: inline-block; width: 18px; height: 12px;
  border-radius: 2px; margin-right: 6px; vertical-align: -2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.14);
}
.flag-ch {
  display: inline-block; width: 13px; height: 13px;
  border-radius: 2px; margin-right: 6px; vertical-align: -2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.14);
}

/* Sweet Bonanza decorative candies — floating accents behind content */
.decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.45));
}
.decor-float { animation: decorFloat 9s ease-in-out infinite; }
.decor-float.alt { animation-duration: 12s; animation-delay: -4s; }
@keyframes decorFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-18px) rotate(var(--r, 0deg)); }
}
.decor-host > .container { position: relative; z-index: 1; }
/* Keep hero/subhero copy above the decorative candies (which are absolutely
   positioned and would otherwise paint over static text). */
.hero, .subhero { position: relative; }
.hero > .container, .subhero > .container { position: relative; z-index: 1; }
@media (max-width: 900px) { .decor { display: none; } }
@media (prefers-reduced-motion: reduce) { .decor-float, .decor-float.alt { animation: none; } }
.crypto-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.crypto-pill {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  background: var(--panel); border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 600; color: var(--text-muted);
  letter-spacing: .01em;
}
.crypto-pill:hover { border-color: var(--border-strong); color: var(--text); }

/* VIP ladder — horizontal status chips */
.vip-ladder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vip-step {
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent), var(--panel);
  padding: 22px 16px;
  text-align: center;
}
.vip-step .lvl { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.vip-step .name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--text); letter-spacing: -.01em; }
.vip-step .cb { font-size: 12px; color: var(--gold); margin-top: 6px; }
.vip-step.is-top { background: radial-gradient(400px 200px at 50% 0%, rgba(245,184,64,.16), transparent 70%), var(--panel-2); }
.vip-step.is-top .name { color: var(--gold-2); }
@media (max-width: 900px) { .vip-ladder { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .vip-ladder { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Mobile refinements — June 2026
   ========================================================================== */

/* (2) Bonus cards must stack on phones/tablets. The unconditional
   ".bonus-grid { repeat(3, minmax(0,1fr)) }" rule earlier in this file lands
   after the responsive collapse and was forcing 3 cramped columns on mobile,
   pushing card content out of frame. Re-assert the single column here so it
   wins the cascade. */
@media (max-width: 1100px) {
  .bonus-grid { grid-template-columns: 1fr; }
}

/* (1) Larger, easier-to-tap hamburger on phones, proportional to the
   neighbouring "Înregistrare" pill. */
@media (max-width: 640px) {
  .hamburger { width: 52px; height: 52px; border-radius: 14px; }
  .hamburger svg { width: 26px; height: 26px; }
}

/* (3) Keep the first column of SEO / VIP tables on a single line so short
   labels ("Status", "Novice", "Middle"…) never break mid-word. Long
   slash-separated cells still wrap at their spaces, and the wrapper already
   scrolls horizontally with a fade hint when needed. */
.seo-table th:first-child,
.seo-table td:first-child {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

/* Hero H1 is always white, even if older seeded content still carries the
   gold span from a previous theme version. */
.hero h1,
.hero h1 span,
.hero h1 .gold { color: var(--text) !important; }
