:root {
  --bg: #f5f7fb;
  --bg-alt: #edf2f7;
  --surface: #ffffff;
  --surface-2: #f8fafd;
  --navy: #081323;
  --navy-mid: #14254b;
  --navy-light: #28527a;
  --gold: #d4930a;
  --gold-dark: #b07a00;
  --gold-light: #f5c518;
  --gold-bg: #fff8e1;
  --gold-border: #f5c51840;
  --teal: #0f9f9a;
  --rose: #c54561;
  --violet: #6f5bd6;
  --text: #0d1f3c;
  --text-secondary: #4a5a7a;
  --text-muted: #8a9ab8;
  --border: #dde3f0;
  --border-light: #eef1f8;
  --success: #16a34a;
  --radius: 8px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 4px rgba(13,31,60,0.07);
  --shadow: 0 4px 16px rgba(13,31,60,0.10);
  --shadow-md: 0 8px 28px rgba(13,31,60,0.13);
  --shadow-gold: 0 4px 20px rgba(212,147,10,0.18);
  --max-w: 1180px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(8,19,35,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8,19,35,0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 36px 36px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--navy-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--gold-light);
  box-shadow: var(--shadow);
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.logo-text span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 2px; }

.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.main-nav a:hover { color: var(--navy); background: var(--bg-alt); }

.header-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.header-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: #ffffff !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

.burger:hover { background: var(--bg-alt); }
.burger:focus-visible { outline: 2px solid var(--gold); }

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.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); }

.mobile-menu {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  transition: all var(--transition);
}

.mobile-menu a:hover { color: var(--navy); background: var(--bg-alt); }

.mobile-menu .mobile-cta {
  margin: 12px 20px 0;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 13px;
  border-radius: 50px;
}

.hero {
  padding: 54px 0;
  background: #07101f;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -34px;
  z-index: 0;
  background: url('../img/hero-slot-bg.png') center/cover no-repeat;
  filter: blur(8px);
  opacity: 0.86;
  transform: scale(1.04);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3,8,18,0.78) 0%, rgba(8,19,35,0.58) 42%, rgba(8,19,35,0.28) 100%),
    linear-gradient(180deg, rgba(8,19,35,0.42) 0%, rgba(8,19,35,0.08) 42%, rgba(8,19,35,0.68) 100%),
    linear-gradient(90deg, var(--gold-light), var(--teal), var(--rose)) left bottom / 100% 8px no-repeat;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.28);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 16px;
  animation: fadeInUp 0.65s ease 0.1s both;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 24px;
  animation: fadeInUp 0.65s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.65s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(212,147,10,0.26);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(212,147,10,0.34); color: var(--navy); }
.btn-primary:focus-visible { outline: 2px solid var(--navy-light); outline-offset: 3px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.42); background: rgba(255,255,255,0.14); color: #ffffff; }

.hero-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.46);
  animation: fadeIn 0.65s ease 0.5s both;
}

.hero-right { animation: fadeIn 0.8s ease 0.2s both; }

.hero-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
}

.hero-card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 154px;
  margin-bottom: 18px;
  background: var(--navy);
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8,19,35,0.86) 100%);
}

.hero-showcase-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #ffffff;
}

.hero-showcase-label span {
  display: block;
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-showcase-label strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.stat-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
  transition: all var(--transition);
}

.stat-item:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.stat-value { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--text-muted); }

.hero-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.hero-card-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(13,31,60,0.22); color: #ffffff; }

.hero-trust { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0faf4;
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--radius);
  padding: 5px 12px;
  font-size: 12px;
  color: var(--success);
  font-weight: 500;
}

.trust-chip::before { content: '✓'; font-weight: 700; }

section { padding: 72px 0; }

.section-header { text-align: center; margin-bottom: 48px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 1px solid rgba(212,147,10,0.22);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-subtitle { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

.slider-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.slider-wrapper { position: relative; overflow: hidden; border-radius: var(--radius-lg); }

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.review-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-gold); }

.review-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }

.review-card-body { padding: 20px; }

.review-card-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

.review-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 14px; }

.review-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }

.stars { display: flex; gap: 2px; }
.stars span { color: var(--gold-light); font-size: 14px; }

.rating-num { font-size: 14px; font-weight: 700; color: var(--gold); }

.review-card-tag {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(212,147,10,0.2);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover { background: var(--navy); color: #ffffff; border-color: var(--navy); }
.slider-btn:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.slider-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.slider-btn:disabled:hover { background: var(--surface); color: var(--navy); border-color: var(--border); }

.slider-dots { display: flex; gap: 8px; }

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.slider-dot.active { background: var(--navy); width: 24px; border-radius: 4px; }

.bonuses-section { background: var(--bg); }

.bonus-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.bonus-tab {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.bonus-tab:hover { border-color: var(--navy); color: var(--navy); }
.bonus-tab.active { background: var(--navy); color: #ffffff; border-color: var(--navy); box-shadow: var(--shadow-md); }
.bonus-tab:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 50px; }

.bonus-panels { position: relative; }
.bonus-panel { display: none; }
.bonus-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.bonus-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold-light));
}

.bonus-card:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), var(--gold-light)); }
.bonus-card:nth-child(3)::before { background: linear-gradient(90deg, var(--rose), var(--violet)); }

.bonus-icon { font-size: 32px; margin-bottom: 16px; }

.bonus-amount { font-size: 30px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 6px; }

.bonus-label { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }

.bonus-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 16px; }

.bonus-terms { font-size: 11px; color: var(--text-muted); }

.slots-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.slot-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: #ffffff; border-color: var(--navy); }
.filter-btn:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 50px; }

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

.slot-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.slot-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-gold); }

.slot-card-img-wrap { position: relative; overflow: hidden; height: 200px; }

.slot-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.slot-card:hover .slot-card-img { transform: scale(1.06); }

.slot-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,19,35,0.28), rgba(8,19,35,0.78));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.slot-card:hover .slot-card-overlay { opacity: 1; }

.slot-play-btn {
  background: #ffffff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.slot-card-body { padding: 16px; }

.slot-name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

.slot-provider { font-size: 14px; color: var(--text-muted); }

.advantages-section {
  background:
    linear-gradient(120deg, rgba(15,159,154,0.08), transparent 35%),
    linear-gradient(300deg, rgba(197,69,97,0.07), transparent 36%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.adv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.adv-card:hover { border-color: rgba(212,147,10,0.4); transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.adv-card:nth-child(2n) { border-top: 3px solid rgba(15,159,154,0.5); }
.adv-card:nth-child(2n + 1) { border-top: 3px solid rgba(212,147,10,0.55); }
.adv-card:nth-child(3n) { border-top-color: rgba(197,69,97,0.5); }

.adv-icon {
  width: 52px;
  height: 52px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.adv-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

.adv-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.seo-section { background: var(--surface); }

.seo-inner { max-width: 840px; margin: 0 auto; }

.seo-inner {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.seo-inner h2 { font-size: 26px; font-weight: 800; margin: 36px 0 14px; color: var(--navy); }

.seo-inner h2:first-child { margin-top: 0; }

.seo-inner p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }

.seo-inner ul { color: var(--text-secondary); font-size: 15px; line-height: 1.8; padding-left: 20px; margin-bottom: 16px; }

.seo-inner ul li { margin-bottom: 6px; }

.seo-table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }

.seo-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 500px; }

.seo-table th {
  background: var(--bg);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}

.seo-table td { padding: 13px 18px; color: var(--text-secondary); border-bottom: 1px solid var(--border-light); }

.seo-table tr:last-child td { border-bottom: none; }

.seo-table tr:hover td { background: var(--bg); color: var(--navy); }

.seo-table td:first-child { color: var(--navy); font-weight: 600; }

.seo-divider { height: 1px; background: var(--border); margin: 32px 0; }

.disclaimer-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 32px;
}

.faq-section { background: var(--bg-alt); border-top: 1px solid var(--border); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item.open { border-color: rgba(212,147,10,0.4); box-shadow: var(--shadow-gold); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }
.faq-question:focus-visible { outline: 2px solid var(--navy); outline-offset: -2px; }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--navy);
  transition: all var(--transition);
}

.faq-item.open .faq-icon { background: var(--navy); color: #ffffff; transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

.offer-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid var(--border);
}

.offer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.offer-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.offer-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 16px;
}

.offer-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.offer-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.offer-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.offer-perk-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.offer-cta {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  color: var(--navy) !important;
  box-shadow: 0 6px 24px rgba(212,147,10,0.35) !important;
}

.offer-cta:hover {
  color: var(--navy) !important;
  box-shadow: 0 10px 32px rgba(212,147,10,0.5) !important;
}

.offer-legal {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.offer-timer-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.offer-timer-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.offer-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 80px;
}

.timer-val {
  font-size: 44px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.timer-name {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.timer-sep {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
}

.offer-progress-wrap {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.offer-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 4px;
  width: 100%;
  transition: width 1s linear;
}

.offer-timer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}

.offer-timer-cta {
  display: block;
  background: #ffffff;
  color: var(--navy);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.offer-timer-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .offer-inner { grid-template-columns: 1fr; gap: 36px; }
  .offer-title { font-size: 26px; }
  .timer-val { font-size: 36px; }
  .timer-unit { min-width: 68px; padding: 12px 14px; }
}

.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-brand .logo-mark { background: rgba(255,255,255,0.1); color: var(--gold-light); box-shadow: none; }

.footer-brand .logo-text { color: #ffffff; }

.footer-brand .logo-text span { color: var(--gold-light); }

.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }

.footer-heading { font-size: 13px; font-weight: 700; color: #ffffff; text-transform: uppercase; letter-spacing: 0; margin-bottom: 16px; }

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--transition); }

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

.footer-legal { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 600px; text-align: right; }

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 200;
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(13,31,60,0.1);
}

.sticky-cta a {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  padding: 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .hero-inner { gap: 36px; }
  .bonus-panel.active { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { flex: 0 0 calc(50% - 10px); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .hero {
    padding: 38px 0 34px;
    min-height: calc(100vh - 118px);
    background: #07101f;
  }
  .hero::before { filter: blur(6px); background-position: 60% center; opacity: 0.72; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  section { padding: 52px 0; }
  .section-title { font-size: 28px; }
  .bonus-panel.active { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 100%; }
  .advantages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }
  .sticky-cta { display: block; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-actions { flex-direction: column; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}
