@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/open-sans-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/open-sans-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/open-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/open-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #070E10;
  --surface: #0E1E24;
  --surface-2: #152A32;
  --surface-3: #1C3540;
  --jade: #00C898;
  --jade-dark: #009A76;
  --jade-light: #2EEDB5;
  --copper: #E8923A;
  --copper-dark: #C07020;
  --copper-light: #F5B06A;
  --text: #EAF5F2;
  --text-soft: #A8C8CC;
  --muted: #6A8A90;
  --border: #1E3A44;
  --border-light: #2A5060;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --radius-pill: 999px;
  --shadow-jade: 0 0 24px rgba(0,200,152,0.35);
  --shadow-copper: 0 0 20px rgba(232,146,58,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.55);
  --header-h: 70px;
  --max-w: 1200px;
  --section-py: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 3px;
  border-radius: var(--radius-s);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--jade-dark); }

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

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 40px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7,14,16,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-emblem {
  width: 38px;
  height: 38px;
  background: var(--jade);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #040A08;
  line-height: 1;
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--radius-s);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--jade); background: rgba(0,200,152,0.08); }
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--jade);
  color: #040A08;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-header-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: var(--radius-s);
  background: var(--surface);
  flex-shrink: 0;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--surface-2); }
.ham-bar {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-bar:nth-child(2) { opacity: 0; }
.hamburger.open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,200,152,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: mesh-drift 20s linear infinite;
}
@keyframes mesh-drift {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}
.geo-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}
.geo-ring-1 {
  width: 620px;
  height: 620px;
  border: 1px solid rgba(0,200,152,0.09);
  animation: ring-breathe 11s ease-in-out infinite;
}
.geo-ring-2 {
  width: 450px;
  height: 450px;
  border: 1px solid rgba(232,146,58,0.07);
  animation: ring-breathe 11s ease-in-out infinite 2.8s;
}
.geo-ring-3 {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(0,200,152,0.13);
  animation: ring-breathe 11s ease-in-out infinite 5.5s;
}
@keyframes ring-breathe {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateY(-50%) scale(1.06); opacity: 1; }
}
.hero-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(0,200,152,0.2) 35%, rgba(0,200,152,0.5) 50%, rgba(0,200,152,0.2) 65%, transparent 95%);
  top: 0;
  animation: scan-move 9s linear infinite;
}
@keyframes scan-move {
  0% { top: 0; opacity: 0; }
  6% { opacity: 1; }
  94% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: calc(100vh - 70px);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(0,200,152,0.08);
  border: 1px solid rgba(0,200,152,0.22);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: var(--jade);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-h1 {
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-h1 span {
  display: block;
  background: linear-gradient(135deg, var(--jade-light) 0%, var(--jade) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: var(--jade);
  color: #040A08;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-s);
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-hero:hover {
  background: var(--jade-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-jade);
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-info-card {
  width: 100%;
  max-width: 340px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,200,152,0.08);
}
.hic-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--surface-3) 0%, var(--surface-2) 100%);
  border-bottom: 2px solid var(--jade);
}
.hic-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--jade);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: #040A08;
  flex-shrink: 0;
}
.hic-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
}
.hic-rows { display: flex; flex-direction: column; }
.hic-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--border);
}
.hic-row:last-child { border-bottom: none; }
.hic-row:nth-child(even) { background: rgba(14,30,36,0.55); }
.hic-key { font-size: 13px; color: var(--muted); white-space: nowrap; }
.hic-val { font-size: 13px; font-weight: 600; color: var(--text); text-align: right; }
.hic-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--jade);
  color: #040A08;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.hic-cta:hover { background: var(--jade-light); }

.hero-circle-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem {
  font-size: 200px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,200,152,0.18);
  line-height: 1;
  position: relative;
  z-index: 2;
  user-select: none;
  animation: emblem-pulse 5s ease-in-out infinite;
}
@keyframes emblem-pulse {
  0%, 100% { -webkit-text-stroke-color: rgba(0,200,152,0.18); }
  50% { -webkit-text-stroke-color: rgba(0,200,152,0.42); filter: drop-shadow(0 0 18px rgba(0,200,152,0.14)); }
}
.hero-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: orbit-spin 40s linear infinite;
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.advantages {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.adv-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.adv-card:hover {
  transform: translateY(-6px);
  border-color: var(--jade);
  box-shadow: var(--shadow-jade);
}
.adv-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(0,200,152,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}
.adv-card:hover .adv-icon-wrap { background: rgba(0,200,152,0.16); }
.adv-icon { width: 30px; height: 30px; color: var(--jade); }
.adv-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.adv-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.casino-reviews {
  padding: var(--section-py) 0;
  background: var(--bg);
  overflow: hidden;
}
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}
.slider-btn:hover {
  background: var(--jade);
  border-color: var(--jade);
  color: #040A08;
  transform: scale(1.1);
}
.slider-btn:disabled { opacity: 0.3; pointer-events: none; }
.slider-btn svg { width: 20px; height: 20px; }
.slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-m);
}
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  flex-shrink: 0;
  width: 280px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--jade);
  box-shadow: var(--shadow-jade);
}
.rc-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
  background: var(--surface-2);
}
.rc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.review-card:hover .rc-img-wrap img { transform: scale(1.05); }
.rc-body { padding: 16px; }
.rc-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.rc-desc { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.55; }
.btn-rc {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(0,200,152,0.08);
  border: 1px solid rgba(0,200,152,0.25);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--jade);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-rc:hover { background: var(--jade); color: #040A08; border-color: var(--jade); }
.slider-dots {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active { background: var(--jade); transform: scale(1.3); }

.slots {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.slots-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.sf-btn {
  padding: 8px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sf-btn:hover, .sf-btn.active {
  background: var(--jade);
  border-color: var(--jade);
  color: #040A08;
  font-weight: 700;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.slot-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.slot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,200,152,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), var(--shadow-jade);
}
.slot-card.hidden { display: none; }
.slot-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/4;
  overflow: hidden;
  background: var(--surface-3);
}
.slot-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.slot-card:hover .slot-img-wrap img { transform: scale(1.08); }
.slot-overlay {
    display: none;
  position: absolute;
  inset: 0;
  background: rgba(7,14,16,0.75);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.slot-play-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--jade);
  color: #040A08;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.2s;
}
.slot-play-btn:hover { background: var(--jade-light); transform: scale(1.05); }
.slot-info {
  padding: 12px 14px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.slot-name { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.slot-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  background: rgba(232,146,58,0.1);
  border: 1px solid rgba(232,146,58,0.2);
  border-radius: var(--radius-pill);
  color: var(--copper);
  white-space: nowrap;
}

.bonuses {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.bonus-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.bonus-tab {
  padding: 10px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bonus-tab.active, .bonus-tab:hover {
  background: rgba(0,200,152,0.08);
  border-color: var(--jade);
  color: var(--jade);
}
.bonus-panel { display: none; }
.bonus-panel.active { display: block; }
.bonus-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}
.bonus-card.featured {
  border-color: var(--jade);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(0,200,152,0.06) 100%);
  box-shadow: var(--shadow-jade);
}
.bc-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(106,138,144,0.15);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.bc-badge.gold {
  background: rgba(0,200,152,0.12);
  color: var(--jade);
}
.bc-title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.bc-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.bc-features { margin-bottom: 20px; }
.bc-features li {
  font-size: 13px;
  color: var(--text-soft);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bc-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jade);
  flex-shrink: 0;
}
.bc-features li:last-child { border-bottom: none; }
.btn-bonus {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-bonus:hover { background: var(--surface-3); border-color: var(--jade); color: var(--jade); }
.btn-bonus.featured-btn {
  background: var(--jade);
  color: #040A08;
  border-color: transparent;
  font-weight: 700;
}
.btn-bonus.featured-btn:hover { opacity: 0.88; }
.bonus-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
  padding: 12px 20px;
  background: rgba(106,138,144,0.06);
  border-radius: var(--radius-s);
  border: 1px solid var(--border);
}

.how-to {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-card {
    height: -webkit-fill-available;
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--copper); }
.step-num {
  font-size: 36px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--jade);
  margin-bottom: 14px;
  line-height: 1;
}
.step-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-arrow { flex-shrink: 0; width: 32px; display: flex; align-items: center; justify-content: center; }
.step-arrow svg { width: 22px; height: 22px; color: var(--jade); opacity: 0.5; }

.seo-section {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.seo-inner { max-width: 860px; margin: 0 auto; }
.seo-heading { text-align: left; margin-bottom: 32px; }
.seo-table-wrap {
  overflow-x: auto;
  margin-bottom: 36px;
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
}
.seo-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.seo-table thead tr { background: var(--surface-2); }
.seo-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  color: var(--jade);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.seo-table td { padding: 12px 20px; color: var(--text-soft); border-bottom: 1px solid var(--border); }
.seo-table tbody tr { background: var(--surface); }
.seo-table tbody tr:nth-child(even) { background: rgba(14,30,36,0.7); }
.seo-table tbody tr:last-child td { border-bottom: none; }
.seo-table tbody tr:hover td { background: rgba(0,200,152,0.04); }
.seo-text p { font-size: 16px; color: var(--text-soft); line-height: 1.75; margin-bottom: 18px; }
.seo-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--jade);
}

.faq {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--jade); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--jade); }
.faq-q[aria-expanded="true"] { color: var(--jade); }
.faq-arrow { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; color: var(--muted); }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--jade); }
.faq-a { padding: 0 22px 18px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: var(--muted); }
.footer-links nav { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--jade); }
.footer-disclaimer p { font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 8px; }
.footer-affiliate { font-size: 11px; color: rgba(106,138,144,0.6); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-age {
  padding: 4px 12px;
  background: rgba(0,200,152,0.1);
  border: 1px solid rgba(0,200,152,0.25);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--jade);
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh, .hero-scanline, .geo-ring, .hero-emblem, .hero-orbit { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

@media (max-width: 1024px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-card-row { grid-template-columns: repeat(2, 1fr); }
  .bonus-card-row .bonus-card:last-child:nth-child(odd) { grid-column: span 2; }
  .steps-row { flex-wrap: wrap; gap: 16px; }
  .step-arrow { display: none; }
  .step-card { flex: 1 1 calc(50% - 8px); min-width: 180px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; min-height: auto; }
  .hero-right { display: flex; justify-content: center; }
  .hero-info-card { max-width: 480px; }
  .hero-h1 { font-size: 58px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(7,14,16,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 12px 16px; font-size: 16px; }
  .btn-header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: 44px; letter-spacing: -1px; }
  .hero-lead { font-size: 16px; }
  .btn-hero { padding: 14px 32px; font-size: 16px; }
  .section-title { font-size: 26px; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .slider-btn { width: 40px; height: 40px; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bonus-card-row { grid-template-columns: 1fr; }
  .bonus-card-row .bonus-card:last-child:nth-child(odd) { grid-column: span 1; }
  .bonus-tabs { gap: 6px; }
  .bonus-tab { padding: 8px 16px; font-size: 13px; }
  .steps-row { flex-direction: column; }
  .step-card { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .seo-table th, .seo-table td { padding: 10px 14px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 34px; }
  .hero-lead { font-size: 15px; }
  .adv-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .section-title { font-size: 22px; }
  .review-card { width: calc(100vw - 80px); max-width: 300px; }
  .slider-btn { width: 36px; height: 36px; }
}

.site-header.scrolled {
  background: rgba(7,14,16,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* Section label (eyebrow text) */
.section-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 10px;
  opacity: 0.85;
}
.seo-inner .section-label { text-align: left; }

/* Hero secondary button */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  border: 1px solid rgba(0,200,152,0.35);
  color: var(--jade);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-s);
  letter-spacing: 0.2px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-hero-secondary:hover {
  background: rgba(0,200,152,0.08);
  border-color: var(--jade);
}

/* Bonus grid (new 6-card layout) */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bgc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.bgc:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}
.bgc--featured {
  border-color: var(--jade);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(0,200,152,0.05) 100%);
  box-shadow: var(--shadow-jade);
}
.bgc-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  width: fit-content;
}
.bgc-chip--jade {
  background: rgba(0,200,152,0.12);
  color: var(--jade);
  border: 1px solid rgba(0,200,152,0.28);
}
.bgc-chip--copper {
  background: rgba(232,146,58,0.12);
  color: var(--copper);
  border: 1px solid rgba(232,146,58,0.28);
}
.bgc-chip--muted {
  background: rgba(106,138,144,0.1);
  color: var(--text-soft);
  border: 1px solid rgba(106,138,144,0.2);
}
.bgc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.bgc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.bgc-features {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.bgc-features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}
.bgc-fl { color: var(--muted); }
.bgc-fv { color: var(--text-soft); font-weight: 600; text-align: right; }
.bgc-fv--accent { color: var(--copper); }
.bgc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-s);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bgc-btn:hover {
  background: rgba(0,200,152,0.08);
  border-color: var(--jade);
  color: var(--jade);
}
.bgc-btn--solid {
  background: var(--jade);
  color: #040A08;
  border-color: transparent;
  font-weight: 700;
}
.bgc-btn--solid:hover {
  background: var(--jade-light);
  color: #040A08;
  border-color: transparent;
  opacity: 1;
}

@media (max-width: 1024px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .btn-hero-secondary { padding: 14px 24px; font-size: 15px; }
}
