:root {
  --bg:      #d8e0ec;
  --bg2:     #edf2f9;
  --card:    #ffffff;
  --card-h:  #eef2ff;
  --gold:    #1e40af;
  --gold-d:  #1e3a8a;
  --teal:    #0891b2;
  --purple:  #7c3aed;
  --amber:   #d97706;
  --green:   #059669;
  --text:    #1e293b;
  --muted:   #64748b;
  --border:  rgba(0,0,0,0.09);
  --shadow:  0 2px 16px rgba(0,0,0,0.07);
  --r:       14px;
  --r-sm:    8px;
  --r-xl:    22px;
  --maxw:    1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
}
.btn:focus-visible { outline: 3px solid rgba(30,64,175,0.4); outline-offset: 3px; }
.btn-gold { background: var(--gold); color: #ffffff; border: none; }
.btn-gold:hover { background: var(--gold-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,64,175,0.3); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: rgba(30,64,175,0.06); transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #ffffff; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(30,64,175,0.3);
}
.logo-name { font-size: 20px; font-weight: 800; color: var(--gold); letter-spacing: -0.5px; }
.site-nav { display: flex; align-items: center; gap: 24px; margin-left: 28px; }
.site-nav a {
  font-size: 14px; color: var(--muted);
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.site-nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
.header-cta { margin-left: auto; height: 40px; padding: 0 22px; font-size: 14px; }

/* ── Burger ── */
.burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; gap: 5px; margin-left: auto;
  border-radius: 8px; transition: background 0.2s;
}
.burger:hover { background: rgba(0,0,0,0.05); }
.burger:focus-visible { outline: 2px solid var(--gold); }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav ── */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 199;
  background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 20px; flex-direction: column; gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { font-size: 16px; color: var(--text); padding: 12px 8px; border-bottom: 1px solid rgba(0,0,0,0.07); transition: color 0.2s; }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: 12px; align-self: flex-start; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 94vh;
  display: flex; align-items: center;
  padding-top: 68px; overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: -3%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  filter: blur(8px);
  transform: scale(1.06);
}
.hero-slide.is-active { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-deco { animation: none !important; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(216,224,236,0.72) 0%, rgba(230,238,250,0.6) 100%);
}

/* Decorative floating circles */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-deco-1 {
  width: 560px; height: 560px;
  top: -140px; right: -100px;
  background: radial-gradient(circle, rgba(30,64,175,0.14) 0%, transparent 68%);
  filter: blur(48px);
  animation: deco-float 9s ease-in-out infinite;
}
.hero-deco-2 {
  width: 380px; height: 380px;
  bottom: 40px; left: -80px;
  background: radial-gradient(circle, rgba(217,119,6,0.11) 0%, transparent 68%);
  filter: blur(56px);
  animation: deco-float 13s ease-in-out infinite reverse;
}
@keyframes deco-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 44px 48px;
  margin: 60px 0;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 8px 48px rgba(0,0,0,0.11), inset 0 1px 0 rgba(255,255,255,0.9);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,64,175,0.08); border: 1px solid rgba(30,64,175,0.2);
  border-radius: 30px; padding: 6px 16px;
  font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 26px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero-title { font-size: 58px; font-weight: 800; line-height: 1.08; color: var(--text); margin-bottom: 22px; letter-spacing: -1px; }
.hero-title .hl { color: var(--gold); }
.hero-lead { font-size: 18px; line-height: 1.7; color: var(--muted); margin-bottom: 38px; max-width: 560px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── Features ── */
.features {
  background: var(--bg2);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 38px 0;
  position: relative;
  overflow: hidden;
}
.features::after {
  content: '';
  position: absolute;
  top: 50%; right: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,64,175,0.06) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }

.feat {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 22px 16px;
  border-radius: var(--r);
  transition: transform 0.22s, box-shadow 0.22s;
}

.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(30,64,175,0.07); border: 1px solid rgba(30,64,175,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  transition: transform 0.2s;
}
.feat:hover .feat-icon { transform: scale(1.1); }
.feat-val { font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1; }
.feat-lbl { font-size: 15px; color: var(--muted); }

.feat--slots .feat-icon  { background: rgba(30,64,175,0.09);  border-color: rgba(30,64,175,0.18); }
.feat--bonus .feat-icon  { background: rgba(217,119,6,0.09);  border-color: rgba(217,119,6,0.2); }
.feat--bonus .feat-val   { color: var(--amber); }
.feat--mobile .feat-icon { background: rgba(8,145,178,0.09);  border-color: rgba(8,145,178,0.2); }
.feat--mobile .feat-val  { color: var(--teal); }
.feat--lang .feat-icon   { background: rgba(124,58,237,0.09); border-color: rgba(124,58,237,0.2); }
.feat--lang .feat-val    { color: var(--purple); }

/* ── Sections ── */
.section { padding: 80px 0; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--amber);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 5px;
}
.section-tag::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--amber);
  border-radius: 2px;
  opacity: 0.5;
}
.section-title { font-size: 36px; font-weight: 800; color: var(--text); line-height: 1.15; margin-bottom: 14px; }
.section-lead { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.7; }
.section-head { margin-bottom: 44px; }

/* ── Slider ── */
.slider-outer { position: relative; }
.slider-viewport { overflow: hidden; border-radius: var(--r-xl); }
.slider-track { display: flex; transition: transform 0.44s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }

.slide-card {
  flex: 0 0 auto; margin-right: 20px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: var(--shadow);
}
.slide-card:last-child { margin-right: 0; }
.slide-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(30,64,175,0.12); }
.slide-img { width: 100%; height: 190px; object-fit: cover; display: block; }
.slide-body { padding: 18px 20px 22px; }
.slide-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.slide-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.slide-footer { display: flex; align-items: center; justify-content: space-between; }
.slide-stars { display: flex; gap: 3px; align-items: center; }
.slide-stars svg { width: 15px; height: 15px; }
.star-f { fill: #f59e0b; }
.star-e { fill: #e2e8f0; }
.slide-rating { font-size: 13px; color: var(--muted); margin-left: 6px; }
.slide-btn { font-size: 13px; font-weight: 600; color: var(--gold); background: rgba(30,64,175,0.06); border: 1px solid rgba(30,64,175,0.2); border-radius: 20px; padding: 6px 14px; transition: background 0.2s; cursor: pointer; }
.slide-btn:hover { background: rgba(30,64,175,0.12); }
.slide-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Bonus cards ── */
.bonus-card {
  flex: 0 0 auto; margin-right: 20px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 32px 26px 28px;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.bonus-card:last-child { margin-right: 0; }
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(30,64,175,0.12); }

.bonus-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.bonus-card-accent--1 { background: linear-gradient(90deg, #1e40af, #3b82f6); }
.bonus-card-accent--2 { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.bonus-card-accent--3 { background: linear-gradient(90deg, #d97706, #fbbf24); }

.bonus-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(30,64,175,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  transition: transform 0.2s;
}
.bonus-card:hover .bonus-icon { transform: scale(1.08); }
.bonus-name { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.bonus-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 22px; }
.bonus-note { font-size: 11px; color: var(--muted); opacity: 0.7; line-height: 1.5; margin-top: 14px; border-top: 1px solid rgba(0,0,0,0.07); padding-top: 12px; }

/* ── Slider controls ── */
.slider-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
.slider-nav { display: flex; gap: 10px; }
.s-btn { width: 46px; height: 46px; border-radius: 50%; background: var(--card); border: 1px solid rgba(0,0,0,0.1); color: var(--text); font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.s-btn:hover:not(:disabled) { background: var(--gold); color: #ffffff; border-color: var(--gold); box-shadow: 0 4px 16px rgba(30,64,175,0.25); }
.s-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.s-btn:disabled { opacity: 0.3; cursor: default; }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(30,64,175,0.2); border: none; cursor: pointer; padding: 0; transition: all 0.22s; }
.dot.is-active { background: var(--gold); width: 24px; border-radius: 4px; }
.dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Slots ── */
.slots-bg { background: var(--bg); }
.bonuses-bg { background: var(--bg2); }

.filter-bar { display: flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.ftab { padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; background: var(--card); color: var(--muted); border: 1px solid rgba(0,0,0,0.1); transition: all 0.2s; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.ftab:hover { color: var(--gold); border-color: rgba(30,64,175,0.3); background: rgba(30,64,175,0.04); }
.ftab.is-active { background: var(--gold); color: #ffffff; border-color: var(--gold); box-shadow: 0 3px 12px rgba(30,64,175,0.25); }
.ftab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.slot-card {
  background: var(--card); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
}
.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(30,64,175,0.13);
  border-color: rgba(30,64,175,0.2);
}
.slot-card.is-hidden { display: none; }
.slot-thumb { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform 0.3s; }
.slot-card:hover .slot-thumb { transform: scale(1.04); }
.slot-body { padding: 14px 16px 16px; }
.slot-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.slot-provider { font-size: 12px; color: var(--muted); }

/* Slot badge overlay */
.slot-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  line-height: 1.4;
  box-shadow: 0 1px 6px rgba(0,0,0,0.18);
}
.slot-badge--top { background: #d97706; color: #fff; }
.slot-badge--new { background: #059669; color: #fff; }

.slots-more { display: flex; justify-content: center; margin-top: 32px; }
.slots-more.is-hidden { display: none; }

/* ── Promo section ── */
.promo-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 80px 0;
}
.promo-bg-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.promo-bg-deco-1 {
  width: 500px; height: 500px;
  top: -160px; left: -80px;
  background: radial-gradient(circle, rgba(30,64,175,0.07) 0%, transparent 65%);
  filter: blur(50px);
}
.promo-bg-deco-2 {
  width: 420px; height: 420px;
  bottom: -120px; right: -60px;
  background: radial-gradient(circle, rgba(8,145,178,0.07) 0%, transparent 65%);
  filter: blur(50px);
}

.section-tag--light { color: var(--amber); }
.section-tag--light::after { background: var(--amber); }
.promo-title { color: var(--text); }
.promo-lead { color: var(--muted); }
.promo-head { position: relative; z-index: 1; }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.promo-card { border-radius: var(--r); height: fit-content;}
.promo-card-inner {
  background: var(--card);
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 28px 24px 20px;
  height: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.promo-card-inner--2 { border-left-color: var(--teal); }
.promo-card-inner:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(30,64,175,0.11); }

.promo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.promo-card-title { font-size: 16px; font-weight: 700; color: var(--text); }
.promo-card-val {
  font-size: 20px; font-weight: 800;
  color: var(--amber);
  white-space: nowrap;
}
.promo-card-inner--2 .promo-card-val { color: var(--teal); }

.promo-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.promo-code-wrap {
  display: flex;
  align-items: stretch;
  border: 1px dashed rgba(30,64,175,0.25);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 4px;
  background: rgba(30,64,175,0.03);
}
.promo-code {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 2px;
  color: var(--text);
}
.promo-copy-btn {
  padding: 0 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  background: none;
  border: none;
  border-left: 1px dashed rgba(30,64,175,0.25);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.promo-copy-btn:hover { color: var(--gold-d); background: rgba(30,64,175,0.06); }
.promo-copy-btn.is-copied { color: #059669; }
.promo-copy-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.promo-expand { border-top: 1px solid rgba(0,0,0,0.07); margin-top: 16px; }
.promo-expand-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  font-family: inherit;
}
.promo-expand-btn:hover { color: var(--gold); }
.promo-expand-ico { font-size: 18px; line-height: 1; transition: transform 0.3s; }
.promo-expand.is-open .promo-expand-ico { transform: rotate(45deg); }
.promo-expand-body { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.promo-expand.is-open .promo-expand-body { max-height: 200px; }
.promo-expand-inner {
  padding-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.promo-note {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.7;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.promo-cta { display: flex; justify-content: center; position: relative; z-index: 1; }
.btn-promo {
  background: var(--gold);
  color: #fff;
  border: none;
  height: 52px;
  padding: 0 44px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-promo:hover {
  background: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,64,175,0.3);
}


/* ── Content / Article ── */
.content-bg { background: var(--bg2); }

.toc {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 14px 18px; margin-bottom: 36px;
  background: rgba(30,64,175,0.04); border: 1px solid rgba(30,64,175,0.12); border-radius: var(--r);
}
.toc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-right: 4px; white-space: nowrap; }
.toc-link { font-size: 13px; color: var(--muted); padding: 5px 12px; border-radius: 20px; background: var(--card); border: 1px solid rgba(0,0,0,0.08); transition: all 0.2s; white-space: nowrap; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.toc-link:hover { color: var(--gold); border-color: rgba(30,64,175,0.25); background: rgba(30,64,175,0.05); }
.toc-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.article-body { max-width: 880px; }
.article-body h3 { font-size: 22px; font-weight: 700; color: var(--text); margin: 36px 0 14px; padding-top: 4px; scroll-margin-top: 90px; }
.article-body h3:first-child { margin-top: 0; }
.article-body p { font-size: 16px; color: var(--muted); line-height: 1.78; margin-bottom: 18px; }
.article-body strong { color: var(--text); font-weight: 600; }

.rev-table { width: 100%; border-collapse: collapse; margin: 28px 0 36px; font-size: 15px; }
.rev-table thead th { background: rgba(30,64,175,0.06); color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 12px 16px; border: 1px solid rgba(0,0,0,0.08); text-align: left; }
.rev-table td { padding: 12px 16px; border: 1px solid rgba(0,0,0,0.07); vertical-align: top; }
.rev-table tbody tr:nth-child(odd) td { background: rgba(0,0,0,0.015); }
.rev-table tbody tr:hover td { background: rgba(30,64,175,0.03); }
.rev-table td:first-child { color: var(--text); font-weight: 600; }
.rev-table td:last-child { color: var(--muted); }

/* ── FAQ ── */
.faq-bg { background: var(--bg); }
.faq-wrap { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item { background: var(--card); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--r); overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,0.04); transition: border-color 0.2s; }
.faq-item:hover { border-color: rgba(30,64,175,0.18); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 20px 22px; background: none; border: none; text-align: left; font-size: 16px; font-weight: 600; color: var(--text); cursor: pointer; transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: -3px; }
.faq-ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(30,64,175,0.08); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); transition: transform 0.3s, background 0.2s; line-height: 1; }
.faq-item.is-open .faq-ico { transform: rotate(45deg); background: rgba(30,64,175,0.14); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.36s ease; }
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 22px 22px; font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ── Sticky CTA ── */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: rgba(255,255,255,0.97); border-top: 1px solid rgba(0,0,0,0.08); padding: 12px 20px; transform: translateY(100%); transition: transform 0.3s; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
.sticky-cta .btn { width: 100%; height: 50px; font-size: 16px; }

/* ── Footer ── */
.site-footer { background: #1e293b; border-top: none; padding: 56px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 0.5fr 1fr 1fr; gap: 48px; margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-mark { background: #3b82f6; box-shadow: none; }
.footer-brand .logo-name { color: #93c5fd; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #93c5fd; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: #ffffff; }
.footer-links a:focus-visible { outline: 2px solid #93c5fd; outline-offset: 2px; border-radius: 2px; }
.footer-bottom { text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.75; }
.footer-bottom p { margin-bottom: 6px; }
.footer-bottom p:last-child { margin-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-title { font-size: 46px; }
  .section-title { font-size: 30px; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-deco-1 { width: 380px; height: 380px; }
  .hero-deco-2 { width: 260px; height: 260px; }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .site-nav, .header-cta { display: none; }
  .hero-title { font-size: 30px; letter-spacing: -0.5px; }
  .hero-lead { font-size: 15px; }
  .hero-content { padding: 32px 26px; margin: 40px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .slide-card { flex: 0 0 calc(50% - 10px); }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sticky-cta { display: block; }
  .section { padding: 60px 0; }
  .toc { gap: 6px; }
  .hero-deco-1 { display: none; }
  .hero-deco-2 { display: none; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-section { padding: 60px 0; }
}

@media (max-width: 520px) {
  .hero-title { font-size: 24px; }
  .hero-content { padding: 24px 20px; margin: 30px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .slide-card, .bonus-card { flex: 0 0 100%; margin-right: 20px; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section-title { font-size: 24px; }
  .rev-table { font-size: 14px; }
  .rev-table thead th, .rev-table td { padding: 10px 12px; }
}
