/* =========================================================================
   BitGuruz Bonus Canada — main.css
   BEM methodology. Mobile-first. Dark premium casino + gold/neon accents.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces */
  --color-bg:          #08070d;
  --color-bg-2:        #0d0b16;
  --color-surface:     #15121f;
  --color-surface-2:   #1b1728;
  --color-border:      rgba(255, 255, 255, 0.08);
  --color-border-2:    rgba(251, 195, 12, 0.22);

  /* Text */
  --color-text:        #f5f3fb;
  --color-text-muted:  #b7b2c9;
  --color-text-dim:    #807a94;

  /* Brand accents */
  --color-gold:        #fbc30c;
  --color-gold-2:      #fcd34d;
  --color-gold-3:      #ffe04b;
  --color-amber:       #f97316;
  --color-violet:      #7c3aed;
  --color-neon:        #06b6d4;
  --color-danger:      #ff3d32;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #fbc30c 0%, #ffe04b 45%, #f97316 100%);
  --grad-dark: radial-gradient(1200px 600px at 20% 0%, rgba(124, 58, 237, 0.18), transparent 60%),
               radial-gradient(900px 500px at 85% 10%, rgba(251, 195, 12, 0.10), transparent 60%),
               linear-gradient(180deg, #08070d 0%, #0b0916 100%);

  /* Glow */
  --glow-gold: 0 0 0 1px rgba(251, 195, 12, 0.35), 0 10px 40px rgba(251, 195, 12, 0.18);
  --glow-cta:  0 10px 30px rgba(251, 195, 12, 0.35), 0 2px 0 rgba(0, 0, 0, 0.25) inset;

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 860px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 72px;

  /* Typography */
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-display: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  background-image: var(--grad-dark);
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold-2); text-decoration: none; }
a:hover { color: var(--color-gold-3); }
button { font: inherit; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 var(--space-4); letter-spacing: -0.01em; }
p { margin: 0 0 var(--space-4); }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-gold);
  color: #000;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.page { overflow-x: hidden; }
.main { display: block; }

.section__inner,
.header__inner,
.footer__inner,
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.section__inner--narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--space-7) 0;
  position: relative;
}
.section--details { background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.0)); }
.section--why { background: linear-gradient(180deg, rgba(124, 58, 237, 0.04), rgba(0, 0, 0, 0)); }
.section--trust { background: linear-gradient(180deg, rgba(251, 195, 12, 0.05), rgba(0, 0, 0, 0)); }

.section__head { margin-bottom: var(--space-6); text-align: center; }
.section__title {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
}
.section__lead {
  color: var(--color-text-muted);
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
}
.section__cta {
  text-align: center;
  margin-top: var(--space-6);
}
.section__cta-note {
  margin-top: var(--space-3);
  font-size: 12px;
  color: var(--color-text-dim);
}

/* =========================================================================
   HEADER
   ========================================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(8, 7, 13, 0.75);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.header[data-scrolled="true"] {
  background: rgba(8, 7, 13, 0.92);
  border-bottom-color: rgba(251, 195, 12, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  min-height: 64px;
  transition: min-height 0.25s ease;
}
.header[data-scrolled="true"] .header__inner { min-height: 56px; }
.header__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
}
.header__logo { height: 32px; width: auto; }
.header__tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-2);
  padding: 4px 8px;
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-pill);
}
.header__nav {
  display: none;
  gap: var(--space-5);
}
.header__link {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.15s ease;
}
.header__link:hover { color: var(--color-text); }

.header__controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.header__cta { display: none; }

@media (min-width: 960px) {
  .header__nav { display: inline-flex; }
  .header__cta { display: inline-flex; }
}

@media (max-width: 420px) {
  .header__tag { display: none; }
}

/* =========================================================================
   BURGER (mobile only)
   ========================================================================= */
.burger {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  color: var(--color-text);
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.burger:hover { border-color: var(--color-border-2); background: rgba(251, 195, 12, 0.06); }
.burger:active { transform: scale(0.94); }
.burger::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-md) + 4px);
  box-shadow: 0 0 0 0 rgba(251, 195, 12, 0);
  transition: box-shadow 0.3s ease;
  pointer-events: none;
}
.burger[aria-expanded="true"]::after { box-shadow: 0 0 0 2px rgba(251, 195, 12, 0.35); }

.burger__box {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
  margin: 0 auto;
}
.burger__line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold-2);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(251, 195, 12, 0.5);
  transition:
    transform 0.35s cubic-bezier(0.22, 0.9, 0.26, 1),
    opacity 0.22s ease,
    top 0.35s cubic-bezier(0.22, 0.9, 0.26, 1),
    width 0.35s cubic-bezier(0.22, 0.9, 0.26, 1);
}
.burger__line:nth-child(1) { top: 0; width: 22px; }
.burger__line:nth-child(2) { top: 7px; width: 16px; }
.burger__line:nth-child(3) { top: 14px; width: 22px; }

.burger:hover .burger__line:nth-child(2) { width: 22px; }

.burger[aria-expanded="true"] .burger__line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
  width: 22px;
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
  width: 22px;
}

@media (max-width: 959px) {
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .lang-switcher.lang-switcher--header { display: none; }
}

/* =========================================================================
   NAV DRAWER (mobile)
   ========================================================================= */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.4s;
}
.nav-drawer[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s linear 0s;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 10, 0.6);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.nav-drawer[aria-hidden="false"] .nav-drawer__backdrop { opacity: 1; }

.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  display: flex;
  flex-direction: column;
  padding: 18px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(520px 520px at 100% -10%, rgba(251, 195, 12, 0.16), transparent 60%),
    radial-gradient(460px 460px at -10% 110%, rgba(124, 58, 237, 0.28), transparent 60%),
    linear-gradient(180deg, #0e0b18 0%, #08070d 100%);
  border-left: 1px solid var(--color-border-2);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.6);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.42s cubic-bezier(0.22, 0.9, 0.26, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer[aria-hidden="false"] .nav-drawer__panel {
  transform: translate3d(0, 0, 0);
}

.nav-drawer__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.nav-drawer__glow--gold {
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(251, 195, 12, 0.55), transparent 70%);
  opacity: 0.7;
}
.nav-drawer__glow--violet {
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent 70%);
  opacity: 0.55;
}

.nav-drawer__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.nav-drawer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-drawer__logo { height: 30px; width: auto; }

.nav-drawer__close {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  width: 42px; height: 42px;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.nav-drawer__close:hover {
  color: var(--color-gold-2);
  border-color: var(--color-border-2);
  background: rgba(251, 195, 12, 0.06);
  transform: rotate(90deg);
}
.nav-drawer__close-icon { width: 18px; height: 18px; }

.nav-drawer__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.nav-drawer__link {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  overflow: hidden;
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 0.9, 0.26, 1),
    transform 0.5s cubic-bezier(0.22, 0.9, 0.26, 1),
    background-color 0.2s ease,
    color 0.2s ease;
  transition-delay: 0ms;
}
.nav-drawer__link::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 2px;
  height: 22px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: translateY(-50%) scaleY(0);
  transform-origin: 50% 50%;
  transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.26, 1);
  box-shadow: 0 0 10px rgba(251, 195, 12, 0.65);
}
.nav-drawer[aria-hidden="false"] .nav-drawer__link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(90ms + 60ms * var(--i, 0));
}
.nav-drawer__link:hover,
.nav-drawer__link:focus-visible,
.nav-drawer__link[data-active="true"] {
  background: rgba(251, 195, 12, 0.06);
  color: var(--color-gold-2);
  outline: none;
}
.nav-drawer__link:hover::before,
.nav-drawer__link:focus-visible::before,
.nav-drawer__link[data-active="true"]::before {
  transform: translateY(-50%) scaleY(1);
}

.nav-drawer__link-index {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-gold-2);
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
  min-width: 22px;
}
.nav-drawer__link-arrow {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.nav-drawer__link-arrow svg {
  width: 22px;
  height: 22px;
  transform: translateX(-8px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.26, 1), opacity 0.2s ease;
}
.nav-drawer__link:hover .nav-drawer__link-arrow,
.nav-drawer__link:focus-visible .nav-drawer__link-arrow,
.nav-drawer__link[data-active="true"] .nav-drawer__link-arrow {
  color: var(--color-gold-2);
}
.nav-drawer__link:hover .nav-drawer__link-arrow svg,
.nav-drawer__link:focus-visible .nav-drawer__link-arrow svg,
.nav-drawer__link[data-active="true"] .nav-drawer__link-arrow svg {
  transform: translateX(0);
  opacity: 1;
}

.nav-drawer__cta,
.nav-drawer__foot {
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 0.9, 0.26, 1);
  transition-delay: 0ms;
}
.nav-drawer[aria-hidden="false"] .nav-drawer__cta,
.nav-drawer[aria-hidden="false"] .nav-drawer__foot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(120ms + 60ms * var(--i, 0));
}

.nav-drawer__cta {
  margin-top: auto;
  padding: 16px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(251, 195, 12, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--color-border-2);
}
.nav-drawer__cta-btn { width: 100%; }
.nav-drawer__cta-note {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--color-text-dim);
  text-align: center;
}

.nav-drawer__foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-start;
}
.lang-switcher--drawer .lang-switcher__select {
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 32px 9px 14px;
  font-size: 14px;
}

/* Body scroll lock + hide sticky CTA while drawer open */
body.menu-open { overflow: hidden; }
body.menu-open .sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (min-width: 960px) {
  .nav-drawer { display: none; }
}

/* ---------- Language switcher ---------- */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switcher__label {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.lang-switcher__select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 6px 28px 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-gold-2) 50%),
    linear-gradient(135deg, var(--color-gold-2) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.lang-switcher__select:hover { border-color: var(--color-border-2); }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  --btn-pad-y: 12px;
  --btn-pad-x: 20px;
  --btn-font: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-size: var(--btn-font);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.18s ease, filter 0.15s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }

.btn--primary {
  color: #1a1000;
  background: var(--grad-gold);
  box-shadow: var(--glow-cta);
  position: relative;
}
.btn--primary::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(251, 195, 12, 0.55);
  animation: pulseGold 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes pulseGold {
  0%   { box-shadow: 0 0 0 0 rgba(251, 195, 12, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(251, 195, 12, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 195, 12, 0); }
}

.btn--sm { --btn-pad-y: 8px; --btn-pad-x: 14px; --btn-font: 13px; }
.btn--lg { --btn-pad-y: 16px; --btn-pad-x: 28px; --btn-font: 17px; }
.btn--block { display: flex; width: 100%; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  padding: var(--space-7) 0 var(--space-8);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  filter: blur(80px);
  opacity: 0.55;
  border-radius: 50%;
}
.hero__glow--gold {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(251, 195, 12, 0.55), transparent 70%);
  top: -80px; right: -120px;
}
.hero__glow--violet {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55), transparent 70%);
  top: 140px; left: -120px;
}
.hero__bolt {
  position: absolute;
  right: 6%;
  top: 35%;
  width: 240px; height: 240px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'><path d='M36 2 L10 36 H28 L22 62 L52 26 H34 Z' fill='%23fbc30c' opacity='0.12' stroke='%23ffe04b' stroke-width='1.2' stroke-opacity='0.35'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(8deg);
  opacity: 0.9;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

.hero__logo { height: 48px; width: auto; margin-bottom: var(--space-4); }
.hero__eyebrow {
  display: inline-block;
  margin: 0 0 var(--space-3);
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-2);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-pill);
  background: rgba(251, 195, 12, 0.06);
}
.hero__title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #cfc8eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: var(--space-4);
  background: var(--grad-gold);
  border-radius: 4px;
}
.hero__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 620px;
  margin-bottom: var(--space-5);
}
.hero__actions { margin-bottom: var(--space-5); }
.hero__cta { min-width: 240px; }
.hero__disclaimer {
  margin: var(--space-3) 0 0;
  font-size: 12px;
  color: var(--color-text-dim);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badges__item {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-badges__item::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 10px rgba(251, 195, 12, 0.8);
}

/* ---------- Bonus card (hero) ---------- */
.bonus-card {
  position: relative;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(251, 195, 12, 0.12), transparent 60%),
    linear-gradient(180deg, var(--color-surface), var(--color-surface-2));
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--glow-gold), 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; height: 2px;
  background: var(--grad-gold);
  opacity: 0.9;
}
.bonus-card__badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1000;
  background: var(--grad-gold);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-weight: 800;
}
.bonus-card__title {
  margin-top: var(--space-4);
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 900;
  letter-spacing: -0.01em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(251, 195, 12, 0.25);
}
.bonus-card__subtitle {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.bonus-card__list { margin-bottom: var(--space-5); }
.bonus-card__item {
  position: relative;
  padding-left: 26px;
  color: var(--color-text);
  margin-bottom: 10px;
  font-size: 15px;
}
.bonus-card__item::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(251, 195, 12, 0.55);
}
.bonus-card__item::after {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 8px; height: 5px;
  border-left: 2px solid #1a1000;
  border-bottom: 2px solid #1a1000;
  transform: rotate(-45deg);
}
.bonus-card__value {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 16px;
  margin-bottom: var(--space-5);
  border: 1px dashed rgba(251, 195, 12, 0.35);
  border-radius: var(--radius-md);
  background: rgba(251, 195, 12, 0.04);
}
.bonus-card__value-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}
.bonus-card__value-amount {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-gold-3);
}
.bonus-card__cta { width: 100%; }
.bonus-card__fineprint {
  margin: var(--space-3) 0 0;
  font-size: 11px;
  color: var(--color-text-dim);
  text-align: center;
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.15fr 0.95fr;
    gap: var(--space-7);
  }
}

/* =========================================================================
   BONUS DETAILS
   ========================================================================= */
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.details-list__item {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-weight: 600;
  position: relative;
  padding-left: 36px;
}
.details-list__item::before {
  content: "⚡";
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold-2);
  font-size: 14px;
  text-shadow: 0 0 12px rgba(251, 195, 12, 0.7);
}

.bonus-table {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.bonus-table__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.bonus-table__caption {
  caption-side: top;
  text-align: left;
  padding: 14px 18px;
  color: var(--color-text-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
}
.bonus-table__table th,
.bonus-table__table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.bonus-table__table thead th {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-2);
  background: rgba(251, 195, 12, 0.04);
}
.bonus-table__table tbody th {
  font-weight: 700;
  color: var(--color-text);
}
.bonus-table__table tbody tr:last-child th,
.bonus-table__table tbody tr:last-child td {
  border-bottom: 0;
}

/* =========================================================================
   HOW TO CLAIM — steps
   ========================================================================= */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(5, 1fr); }
}
.steps__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  position: relative;
}
.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-weight: 900;
  color: #1a1000;
  background: var(--grad-gold);
  box-shadow: 0 0 16px rgba(251, 195, 12, 0.35);
}
.steps__text { color: var(--color-text); font-weight: 500; }

/* =========================================================================
   WHY — card grid
   ========================================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--color-surface), var(--color-surface-2));
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-border-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.why-card__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 var(--space-2);
  color: var(--color-gold-2);
}
.why-card__text { color: var(--color-text-muted); margin: 0; font-size: 15px; }

/* =========================================================================
   TRUST WIDGET
   ========================================================================= */
.trust-widget {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border-2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(251, 195, 12, 0.15) inset;
}
.trust-widget__stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: var(--space-3);
}
.trust-widget__star {
  width: 22px; height: 22px;
  background-color: var(--color-gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z'/></svg>") center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(251, 195, 12, 0.6));
}
.trust-widget__star--half {
  background: linear-gradient(90deg, var(--color-gold) 50%, rgba(251, 195, 12, 0.25) 50%);
}
.trust-widget__rating {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 0 0 var(--space-2);
}
.trust-widget__rating-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-gold-2);
}
.trust-widget__rating-scale { color: var(--color-text-dim); font-size: 13px; }
.trust-widget__label { font-weight: 700; margin: 0 0 var(--space-2); }
.trust-widget__text { color: var(--color-text-muted); font-size: 14px; margin: 0 0 var(--space-4); }
.trust-widget__link {
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--color-gold-2);
}

/* =========================================================================
   DISCLAIMER
   ========================================================================= */
.disclaimer-text {
  color: var(--color-text-muted);
  font-size: 15px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.faq {
  display: grid;
  gap: var(--space-3);
}
.faq__item {
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq__item[aria-expanded="true"] { border-color: var(--color-border-2); }
.faq__question {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
}
.faq__question:hover { color: var(--color-gold-2); }
.faq__question:focus-visible {
  outline: 2px solid var(--color-gold-2);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}
.faq__icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s ease;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--color-gold-2);
  border-radius: 2px;
  left: 3px; top: 10px;
  width: 16px; height: 2px;
}
.faq__icon::after { transform: rotate(90deg); transition: transform 0.25s ease; }
.faq__item[aria-expanded="true"] .faq__icon::after { transform: rotate(0); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  color: var(--color-text-muted);
}
.faq__item[aria-expanded="true"] .faq__answer {
  max-height: 480px;
  padding: 0 20px 18px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  margin-top: var(--space-7);
  padding: var(--space-7) 0 calc(var(--space-7) + 80px);
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer__logo { height: 32px; width: auto; }
.footer__about { color: var(--color-text-muted); margin: 0; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: var(--space-4);
}
.footer__legal-item {
  font-size: 13px;
  color: var(--color-text-dim);
  padding-right: 16px;
  border-right: 1px solid var(--color-border);
}
.footer__legal-item:last-child { border-right: 0; padding-right: 0; }
.footer__affiliate { font-size: 13px; color: var(--color-text-dim); }
.footer__copyright { font-size: 12px; color: var(--color-text-dim); margin: 0; }

@media (min-width: 960px) {
  .footer { padding-bottom: var(--space-7); }
}

/* =========================================================================
   STICKY MOBILE CTA
   ========================================================================= */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  padding: 10px 12px 14px;
  background: linear-gradient(180deg, rgba(8, 7, 13, 0.4), rgba(8, 7, 13, 0.96));
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
}
.sticky-cta__btn { box-shadow: var(--glow-cta); }
.sticky-cta__note {
  margin: 6px 0 0;
  text-align: center;
  font-size: 10.5px;
  color: var(--color-text-dim);
}
@media (min-width: 960px) {
  .sticky-cta { display: none; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
