/* FIX: Local fallback fonts with size-adjust to match Oswald/IBM Plex metrics */
/* This prevents CLS when web fonts load/swap — Lighthouse fix for 0.008 CLS */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: local("Arial");
  size-adjust: 88%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}

:root {
  --bg1: #080e1b;
  --bg2: #0d1526;
  --bg3: #111b30;
  --bg4: #162240;
  --bg5: #1a2a4a;
  --blue:        #0099FF;
  --blue-light:  #33BBFF;
  --gold:        #FFD700;
  --green:       #00E676;
  --red:         #FF3D57;
  --text:        #b8c4db;
  --text-bright: #f0f4ff;
  --text-dim:    #7a88a0;
  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --radius:    12px;
  --radius-sm: 8px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --tr: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg1);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: calc(3.8rem + var(--safe-bottom));
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }

/* UTILITIES */
.txt-blue  { color: var(--blue)     !important; }
.txt-green { color: var(--green)    !important; }
.txt-red   { color: var(--red)      !important; }
.txt-gold  { color: var(--gold)     !important; }
.txt-dim   { color: var(--text-dim) !important; }

/* SKIP LINK */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--blue); color: #fff; padding: .5rem 1rem;
  border-radius: var(--radius-sm); font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* HEADER / NAV */
header {
  background: rgba(8,14,27,.95);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid rgba(0,153,255,.15);
}
.nav-inner {
  position: relative;
  display: flex; align-items: center; height: 60px;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.logo-v    { color: var(--blue); }
.logo-brand { color: var(--text-bright); }
.logo-dot  { color: var(--gold); }
.logo-casino { color: var(--text-dim); font-size: .9rem; }

nav { margin-left: auto; }
.nav-menu {
  display: flex; align-items: center; gap: .25rem;
  list-style: none;
}
.nav-menu a {
  color: var(--text); text-decoration: none;
  padding: .4rem .75rem; border-radius: var(--radius-sm);
  font-size: .9rem; transition: color var(--tr), background var(--tr);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--text-bright); background: rgba(255,255,255,.06); }
.nav-menu li:last-child { margin-left: .5rem; }

.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.burger span {
  display: block; height: 2px; background: var(--text-bright);
  border-radius: 2px; transition: transform .25s, opacity .25s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .6rem 1.4rem; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-size: .95rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  letter-spacing: .04em; transition: opacity var(--tr), transform var(--tr);
  white-space: nowrap;
  max-width: 100%;
}
.btn:hover  { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold   { background: var(--gold); color: #0a0a0a; }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: rgba(0,153,255,.1); }
.btn-nav    { background: var(--blue); color: #fff; padding: .45rem 1.1rem; font-size: .85rem; }
.btn-sm     { padding: .4rem 1rem; font-size: .82rem; }
.btn-lg     { padding: .8rem 2rem; font-size: 1.05rem; }
.btn-tg     { background: #229ED9; color: #fff; }

/* BREADCRUMB */
.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol { display: flex; align-items: center; gap: .5rem; list-style: none; }
.breadcrumb a { color: var(--blue); text-decoration: none; font-size: .875rem; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li { font-size: .875rem; color: var(--text-dim); }

/* SECTIONS */
.section      { padding: 4rem 0; }
.section.bg-alt, .bg-alt { background: var(--bg2); }
.section-lead { font-size: 1.05rem; color: var(--text); margin-bottom: 2rem; max-width: 780px; }
.section-note { margin-top: 1.5rem; font-size: .875rem; padding: 1rem; background: var(--bg3); border-radius: var(--radius); border-left: 3px solid var(--blue); }
.section-link { margin-top: 2rem; text-align: center; }
.section-cta  { text-align: center; margin-top: 2.5rem; padding: 0 .5rem; }
.section-cta__note { margin-top: .75rem; font-size: .8rem; }
.section-cta .btn {
  white-space: normal;
  word-break: keep-all;
  line-height: 1.35;
  max-width: min(100%, 520px);
  width: auto;
}
.section-kicker {
  display: inline-block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-light);
  margin-bottom: .85rem;
}
.quick-jump { padding: 1.25rem 0 0; }
.quick-jump__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.quick-jump__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 153, 255, .28);
  background: rgba(0, 153, 255, .1);
  color: var(--text-bright);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  transition: background var(--tr), border-color var(--tr);
}
.quick-jump__link:hover {
  background: rgba(0, 153, 255, .2);
  border-color: rgba(0, 153, 255, .5);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  background: var(--bg3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 1rem;
}
.trust-item__title {
  display: block;
  color: var(--text-bright);
  font-family: var(--font-head);
  font-size: .95rem;
  margin-bottom: .35rem;
}
.trust-item p {
  font-size: .83rem;
  color: var(--text-dim);
}
.cta-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 215, 0, .32);
  background: linear-gradient(145deg, rgba(255, 215, 0, .08), rgba(0, 153, 255, .08));
  padding: 1.5rem;
}
.cta-panel h2 { margin-bottom: .75rem; }
.cta-panel p { max-width: 760px; }
.cta-panel__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.cta-panel__hint {
  font-size: .8rem;
  color: var(--text-dim);
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--text-bright);
  margin-bottom: 1.5rem;
  letter-spacing: .03em;
}
h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: .75rem;
  letter-spacing: .02em;
}

/* REVEAL ANIMATION */
.reveal-section { opacity: 0; transition: opacity .45s ease; }
.reveal-section.visible { opacity: 1; }

/* HERO */
.hero-section {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--bg1) 0%, #0a1428 50%, var(--bg2) 100%);
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,153,255,.06), transparent);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start;
}
h1, .hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: .03em;
}
.hero-badge {
  display: inline-block; background: rgba(0,153,255,.12);
  border: 1px solid rgba(0,153,255,.3);
  color: var(--blue); font-size: .78rem; font-weight: 600;
  padding: .3rem .75rem; border-radius: 20px;
  margin-bottom: 1rem; letter-spacing: .05em; text-transform: uppercase;
}
.hero-lead { font-size: 1.05rem; margin-bottom: 1.5rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 2rem;
}
.hero-stat {
  background: var(--bg3); border-radius: var(--radius);
  padding: .75rem; text-align: center;
  border: 1px solid rgba(255,255,255,.06);
}
.hero-stat__val { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--text-bright); }
.hero-stat__label { font-size: .72rem; color: var(--text-dim); margin-top: .2rem; display: block; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
  background: var(--bg3);
  border: 1px solid rgba(0,153,255,.2);
  border-radius: var(--radius);
  padding: 2rem; text-align: center;
  position: sticky; top: 80px;
}
.hero-card__rating { display: flex; align-items: baseline; justify-content: center; gap: .2rem; margin-bottom: .5rem; }
.hero-card__num { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; }
.hero-card__max { font-size: 1.2rem; color: var(--text-dim); }
.hero-card__verdict { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.hero-card__pros { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.hero-card__pros li { padding: .3rem 0; font-size: .88rem; color: var(--text); border-bottom: 1px solid rgba(255,255,255,.05); }
.hero-card__pros li::before { content: "✓ "; color: var(--green); }

/* SUB HERO */
.section-hero-sub {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* FACTS GRID */
.facts-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.fact-item {
  background: var(--bg3); border-radius: var(--radius);
  padding: 1rem; border: 1px solid rgba(255,255,255,.06);
  transition: border-color var(--tr);
}
.fact-item:hover { border-color: rgba(0,153,255,.3); }
.fact-label { display: block; font-size: .72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }
.fact-val { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--text-bright); font-weight: 600; }

/* PROMO BLOCK */
.promo-block {
  display: flex; gap: 2.5rem; align-items: center;
  background: var(--bg3); border-radius: var(--radius);
  padding: 2rem; border: 1px solid rgba(255,215,0,.2);
}
.promo-block__desc { flex: 1; }
.promo-block__desc h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.promo-block__desc p { margin-bottom: .5rem; }
.promo-block__code { text-align: center; min-width: 200px; }
.promo-display {
  background: var(--bg4); border: 2px dashed var(--gold);
  border-radius: var(--radius-sm); padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}
.promo-code-text {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--gold); letter-spacing: .1em;
}
.promo-note { font-size: .8rem; margin-top: .5rem; }

/* BONUS GRID */
.bonus-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.bonus-card {
  background: var(--bg3); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid rgba(255,255,255,.07);
  transition: border-color var(--tr), transform var(--tr);
}
.bonus-card:hover { border-color: rgba(0,153,255,.3); transform: translateY(-2px); }
.bonus-card--main { border-color: rgba(255,215,0,.3); background: var(--bg4); }
.bonus-card__icon { font-size: 2rem; margin-bottom: .75rem; }
.bonus-card__amount { font-family: var(--font-head); font-size: 2rem; font-weight: 700; }
.bonus-card__desc { font-size: .875rem; color: var(--text-dim); margin: .25rem 0 1rem; }
.bonus-card__list { list-style: none; font-size: .82rem; margin-bottom: 1rem; }
.bonus-card__list li { padding: .25rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 2rem; }
.step-item {
  background: var(--bg3); border-radius: var(--radius);
  padding: 1.25rem; border: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-item h3 { font-size: .95rem; }
.step-item p  { font-size: .82rem; margin-top: .5rem; }

/* SLOTS GRID */
.slots-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.slots-grid--full { grid-template-columns: repeat(4, 1fr); }
.slot-card {
  background: var(--bg3); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  transition: border-color var(--tr), transform var(--tr);
}
.slot-card:hover { border-color: rgba(0,153,255,.3); transform: translateY(-3px); }
.slot-card__img-wrap {
  background: linear-gradient(135deg, var(--bg5), var(--bg4));
  position: relative; height: 160px; overflow: hidden;
}
.slot-card__img-wrap.no-img::after {
  content: "🎰";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.slot-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.slot-badge {
  position: absolute; top: .5rem; right: .5rem;
  font-size: .68rem; font-weight: 700; padding: .2rem .5rem;
  border-radius: 4px; letter-spacing: .03em; text-transform: uppercase;
}
.badge-buy { background: rgba(255,215,0,.9); color: #0a0a0a; }
.slot-card__body { padding: 1rem; }
.slot-card__name { font-family: var(--font-head); font-size: .95rem; margin-bottom: .2rem; }
.slot-card__provider { font-size: .75rem; margin-bottom: .75rem; }
.slot-card__stats { display: flex; gap: .75rem; font-size: .78rem; margin-bottom: .75rem; }

/* PAYMENT SECTION */
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.pay-table { width: 100%; border-collapse: collapse; }
.pay-table th, .pay-table td { padding: .6rem .8rem; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .875rem; text-align: left; }
.pay-table th { background: var(--bg4); color: var(--text-bright); font-family: var(--font-head); }
.insight-block {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--bg3); border-radius: var(--radius);
  padding: 1.5rem; border-left: 3px solid var(--green);
  margin-bottom: 1.5rem;
}
.insight-icon { font-size: 2rem; flex-shrink: 0; }
.crypto-block {
  background: var(--bg3); border-radius: var(--radius);
  padding: 1.25rem; border: 1px solid rgba(255,255,255,.07);
}

/* VIP */
.vip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.vip-card {
  background: var(--bg3); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid rgba(255,255,255,.07);
  text-align: center; transition: border-color var(--tr);
}
.vip-card:hover { border-color: rgba(0,153,255,.3); }
.vip-card--top { border-color: rgba(255,215,0,.3); }
.vip-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.vip-cashback { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin: .5rem 0; display: block; }

/* TRANSFER */
.transfer-block {
  display: grid; grid-template-columns: 1fr 280px; gap: 2rem; align-items: center;
}
.transfer-steps { display: flex; flex-direction: column; gap: 1rem; }
.transfer-step {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg3); padding: 1rem; border-radius: var(--radius);
}
.transfer-step__num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0; font-family: var(--font-head);
}
.transfer-bonus-card {
  background: var(--bg3); border: 1.5px solid rgba(255,215,0,.3);
  border-radius: var(--radius); padding: 2rem; text-align: center;
}
.transfer-bonus-label { font-size: .875rem; color: var(--text-dim); margin-bottom: .5rem; }
.transfer-bonus-val { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: .5rem; }
.transfer-highlight {
  background: var(--bg3); border: 1.5px solid rgba(255,215,0,.3);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  max-width: 400px; margin: 0 auto;
}
.transfer-highlight__val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; margin-bottom: .5rem; }
.transfer-highlight__note { font-size: .875rem; color: var(--text-dim); margin-bottom: 1rem; }

/* MOBILE SECTION */
.mobile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.mobile-item {
  background: var(--bg3); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid rgba(255,255,255,.07);
}
.mobile-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mobile-item p { font-size: .875rem; }

/* TELEGRAM BANNER */
.tg-banner {
  display: flex; align-items: center; gap: 1.25rem;
  background: linear-gradient(135deg, rgba(34,158,217,.15), rgba(34,158,217,.05));
  border: 1px solid rgba(34,158,217,.3);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.tg-banner__icon { font-size: 2.5rem; flex-shrink: 0; }
.tg-banner__text { flex: 1; }
.tg-banner__text strong { display: block; color: var(--text-bright); }
.tg-banner__text span  { font-size: .875rem; color: var(--text-dim); }

/* COMPARE TABLE */
.table-wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.table-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, rgba(8, 14, 27, .92), rgba(8, 14, 27, 0));
  opacity: 0;
  transition: opacity .2s ease;
}
.table-wrap.has-overflow:not(.is-end)::after { opacity: 1; }
.compare-table, .rtp-table {
  width: 100%; border-collapse: collapse; min-width: 600px;
}
.compare-table th, .compare-table td,
.rtp-table th, .rtp-table td {
  padding: .7rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .875rem; text-align: left;
}
.compare-table th, .rtp-table th { background: var(--bg4); color: var(--text-bright); font-family: var(--font-head); }
.compare-table .highlight { background: rgba(0,153,255,.07); font-weight: 600; }
.compare-table th.highlight { background: rgba(0,153,255,.2); }
.highlight-row td { background: rgba(255,215,0,.05); font-weight: 500; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.review-card {
  background: var(--bg3); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid rgba(255,255,255,.07);
}
.review-card__top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-ava {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg4); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: var(--text-bright);
  flex-shrink: 0; font-size: .9rem;
}
.review-name { font-weight: 600; color: var(--text-bright); font-size: .9rem; }
.review-stars { margin-left: auto; white-space: nowrap; }
.s-on  { color: var(--gold); }
.s-off { color: rgba(255,215,0,.25); }
.review-text { font-size: .875rem; line-height: 1.6; }

/* SCORE BARS */
.score-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.score-total { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .5rem; }
.score-total__num { font-family: var(--font-head); font-size: 4rem; font-weight: 700; }
.score-total__max { font-size: 1.5rem; color: var(--text-dim); }
.score-verdict { font-size: 1.1rem; font-weight: 600; margin-bottom: 2rem; }
.score-bars { display: flex; flex-direction: column; gap: .75rem; }
.score-row { display: grid; grid-template-columns: 160px 1fr 40px; align-items: center; gap: .75rem; }
.score-row__label { font-size: .82rem; color: var(--text); }
.score-row__track { height: 8px; background: var(--bg4); border-radius: 5px; overflow: hidden; }
.score-row__fill { height: 100%; border-radius: 5px; transition: width .8s cubic-bezier(.4,0,.2,1); }
.score-row__val { font-family: var(--font-head); font-size: .9rem; font-weight: 600; color: var(--text-bright); text-align: right; }

.pros-cons h3 { margin-bottom: 1rem; }
.pros, .cons { margin-bottom: 1.5rem; }
.pros ul, .cons ul { list-style: none; }
.pro-item, .con-item { display: flex; align-items: center; gap: .5rem; padding: .4rem 0; font-size: .875rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.pro-icon { color: var(--green); font-weight: 700; }
.con-icon { color: var(--red); font-weight: 700; }

/* AUTHOR */
.author-block {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--bg3); border-radius: var(--radius);
  padding: 2rem; border: 1px solid rgba(255,255,255,.07);
}
.author-ava {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-family: var(--font-head); font-size: 1.2rem; color: var(--text-bright); margin-bottom: .5rem; }
.author-info p { margin-bottom: .75rem; font-size: .9rem; }
.methodology { background: var(--bg4); border-radius: var(--radius-sm); padding: 1rem; margin: 1rem 0; }
.methodology h3 { font-size: .9rem; margin-bottom: .5rem; }
.methodology p { font-size: .82rem; margin: 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { background: var(--bg3); border-radius: var(--radius); border: 1px solid rgba(255,255,255,.07); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; background: none; border: none;
  color: var(--text-bright); font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: background var(--tr);
}
.faq-q:hover { background: rgba(255,255,255,.04); }
.faq-icon { font-size: 1.2rem; color: var(--blue); transition: transform .3s; flex-shrink: 0; }
.faq-icon::after { content: "+"; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-a.open { grid-template-rows: 1fr; }
.faq-a__inner { overflow: hidden; min-height: 0; }
.faq-a__inner p { padding: .75rem 1.25rem 1rem; font-size: .86rem; line-height: 1.65; }

/* STICKY CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(8,14,27,.97);
  border-top: 1px solid rgba(0,153,255,.2);
  transform: translateY(100%);
  transition: transform var(--tr);
  padding: .65rem 0 calc(.65rem + var(--safe-bottom));
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  overflow: hidden;
}
.sticky-cta__text {
  font-size: .88rem; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex-shrink: 1; min-width: 0;
}
.sticky-cta__text strong { color: var(--gold); white-space: nowrap; }
.sticky-cta .btn { flex-shrink: 0; white-space: nowrap; font-size: .88rem; padding: .55rem 1.1rem; }

/* SCROLL TO TOP */
.to-top {
  position: fixed; bottom: 5rem; right: 1.2rem; z-index: 790;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg3); border: 1.5px solid rgba(255,255,255,.15);
  color: var(--text-bright); font-size: 1.2rem;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s;
  display: flex; align-items: center; justify-content: center;
}
.to-top.visible { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--bg4); transform: translateY(-2px); }

/* BONUS DETAIL */
.bonus-detail {
  display: grid; grid-template-columns: 200px 1fr; gap: 2rem; align-items: start;
}
.bonus-detail__main { text-align: center; background: var(--bg3); border-radius: var(--radius); padding: 2rem; border: 1.5px solid rgba(255,215,0,.3); }
.bonus-detail__amount { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; }
.bonus-detail__max { font-size: 1rem; color: var(--text-dim); margin-top: .5rem; }
.bonus-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.bonus-table tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.bonus-table td { padding: .6rem .5rem; font-size: .875rem; }
.bonus-table td:first-child { color: var(--text-dim); width: 180px; }

/* NODEPOSIT */
.nodeposit-block { display: flex; gap: 2rem; align-items: flex-start; background: var(--bg3); border-radius: var(--radius); padding: 2rem; border-left: 3px solid var(--green); }
.nodeposit-icon { font-size: 3rem; flex-shrink: 0; }
.nodeposit-info p { margin-bottom: 1rem; }
.nodeposit-steps { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.nodeposit-step { display: flex; align-items: center; gap: 1rem; font-size: .875rem; }
.nodeposit-step__num { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #0a0a0a; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; font-size: .8rem; }

/* CASHBACK GRID */
.cashback-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.cashback-card { background: var(--bg3); border-radius: var(--radius); padding: 1.25rem; text-align: center; border: 1px solid rgba(255,255,255,.07); }
.cashback-card--top { border-color: rgba(0,230,118,.3); }
.cashback-level { display: block; font-size: .78rem; color: var(--text-dim); margin-bottom: .5rem; }
.cashback-pct { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; }
.cashback-note { display: block; font-size: .75rem; color: var(--text-dim); margin-top: .3rem; }

/* DEMO BLOCK */
.demo-block { display: flex; gap: 2rem; align-items: flex-start; }
.demo-icon { font-size: 4rem; flex-shrink: 0; }
.demo-info p { margin-bottom: 1rem; }

/* PROVIDERS */
.providers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.provider-card { background: var(--bg3); border-radius: var(--radius); padding: 1.5rem; border: 1px solid rgba(255,255,255,.07); }

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 3rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer-col h3 { color: var(--text-bright); font-size: 1rem; margin-bottom: 1rem; }
.footer-col p { font-size: .875rem; margin-bottom: .5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col a { color: var(--text); text-decoration: none; font-size: .875rem; transition: color var(--tr); }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; }
.disclaimer { font-size: .75rem; color: var(--text-dim); margin-bottom: .5rem; line-height: 1.6; }
.footer-bottom p:last-child { font-size: .75rem; }

/* ===== BREAKPOINTS ===== */
@media (max-width: 900px) {
  .slots-grid, .slots-grid--full { grid-template-columns: repeat(3, 1fr); }
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .cashback-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  nav { position: static; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: -1.25rem;
    right: -1.25rem;
    background: rgba(8,14,27,.98);
    flex-direction: column;
    align-items: stretch;
    padding: .8rem 1.25rem 1rem;
    gap: .25rem;
    border-bottom: 1px solid rgba(0,153,255,.15);
  }
  .nav-menu.open { display: flex; }
  .nav-menu .btn { width: 100%; justify-content: center; }
  .nav-menu a { padding: .6rem .75rem; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .score-layout { grid-template-columns: 1fr; }
  .score-row { grid-template-columns: 120px 1fr 36px; }

  .payment-grid { grid-template-columns: 1fr; }
  .transfer-block { grid-template-columns: 1fr; }
  .bonus-detail { grid-template-columns: 1fr; }
  .author-block { flex-direction: column; }

  .vip-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: 1fr; }
  .demo-block { flex-direction: column; }
}

@media (max-width: 600px) {
  .section { padding: 2.5rem 0; }
  .bonus-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: 1fr; }
  .quick-jump__link { width: 100%; justify-content: center; }
  .cta-panel__actions { flex-direction: column; align-items: stretch; }
  .cta-panel__actions .btn { width: 100%; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cashback-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid, .slots-grid--full { grid-template-columns: repeat(2, 1fr); }
  .promo-block { flex-direction: column; text-align: center; }
  .promo-block__code { width: 100%; }
  .nodeposit-block { flex-direction: column; }

  /* Fix button overflow on mobile */
  .section-cta .btn {
    display: block;
    width: 100%;
    white-space: normal;
    word-break: keep-all;
    line-height: 1.4;
    font-size: .9rem;
    padding: .75rem 1rem;
  }
  .hero-actions .btn { white-space: normal; text-align: center; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .author-block { flex-direction: column; }
  .vip-grid { grid-template-columns: 1fr; }
  .sticky-cta__text { display: none; }
  .sticky-cta .btn { width: 100%; }
  .sticky-cta__inner { justify-content: center; }
}

@media (max-width: 380px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .btn-lg { padding: .7rem 1rem; font-size: .88rem; }
  .to-top { bottom: calc(4.2rem + var(--safe-bottom)); right: .8rem; }
  .section-cta .btn { font-size: .82rem; }
}
