/* ============================================================
   MELBET Landing — dark casino theme
   Главная = сплит-экран: слева партнёрам, справа игрокам
   ============================================================ */
:root {
  --bg: #07090f;
  --bg-2: #0d1220;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #f2f4fa;
  --muted: #9aa3b8;
  --gold-1: #ffd24a;
  --gold-2: #ff9d00;
  --fire-1: #ff5e3a;
  --fire-2: #ff2a68;
  --radius: 20px;
  --header-h: 92px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
  overflow-x: clip; /* clip не создаёт скролл-контейн — iOS фикс для position:fixed */
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
}
@media (min-width: 861px) {
  .page-home { overflow: hidden; } /* главная на десктопе без скролла */
}


h1, h2 { font-family: "Bebas Neue", "Inter", sans-serif; letter-spacing: 0.02em; }
a { color: inherit; text-decoration: none; }

/* ---------- фон ---------- */
#fx {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ---------- шапка ---------- */
.header {
  position: fixed !important; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center; gap: 24px;
  padding: 0 clamp(16px, 4vw, 48px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.header-home { justify-content: center; } /* лого по центру на главной */
.header-home .lang { position: absolute; right: clamp(16px, 4vw, 48px); }

.brand-logo {
  height: 56px; width: auto; display: block; border-radius: 8px;
  filter: drop-shadow(0 0 18px rgba(255, 210, 74, 0.45));
  animation: logoPulse 3s ease-in-out infinite;
  transition: transform 0.3s;
}
.brand:hover .brand-logo { transform: scale(1.05) rotate(-1deg); }
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(255, 210, 74, 0.35)); }
  50%      { filter: drop-shadow(0 0 26px rgba(255, 210, 74, 0.65)) drop-shadow(0 0 50px rgba(255, 157, 0, 0.3)); }
}
.header:not(.header-home) {
  background: rgba(7, 9, 15, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  --header-h: 68px;
}
.header:not(.header-home) .brand-logo { height: 40px; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { font-weight: 600; font-size: 15px; color: var(--muted); transition: color 0.25s; }
.nav a:hover { color: var(--gold-1); }

/* ---------- выбор языка ---------- */
.lang { position: relative; margin-left: auto; }
.header-home .lang { margin-left: 0; }
.lang-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--card-border);
  color: var(--text); font: inherit; font-weight: 700; font-size: 13px;
  padding: 9px 13px; border-radius: 999px; cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.lang-btn:hover { border-color: var(--gold-1); background: rgba(255, 255, 255, 0.08); }
.lang-list {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 280px; max-height: 60vh; overflow-y: auto;
  list-style: none;
  background: #10141f; border: 1px solid var(--card-border);
  border-radius: 14px; padding: 8px; z-index: 60;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: 0.22s ease;
}
.lang.open .lang-list { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-search-item { padding: 2px 2px 8px; position: sticky; top: 0; background: #10141f; z-index: 2; }
.lang-search {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 14px;
  outline: none;
}
.lang-search::placeholder { color: #6d7485; }
.lang-search:focus { border-color: var(--gold-1); }
.lang-list li.lang-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px; cursor: pointer;
  font-size: 14px; font-weight: 500;
}
.lang-list li.lang-item:hover { background: rgba(255, 255, 255, 0.07); }
.lang-list li.lang-item.active { color: var(--gold-1); background: rgba(255, 210, 74, 0.18); }
.lang-list::-webkit-scrollbar { width: 6px; }
.lang-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 3px; }

/* ============================================================
   ГЛАВНАЯ — сплит-экран 50/50, всё влазит без скролла
   ============================================================ */
.split {
  position: relative; z-index: 1;
  display: flex;
  height: 100svh;
  padding-top: var(--header-h);
}

.half {
  position: relative; overflow: hidden;
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 3vh, 40px) clamp(20px, 3vw, 48px);
  transition: flex 0.55s cubic-bezier(0.25, 1, 0.35, 1);
}
/* наводишь — половина подрастает */
@media (hover: hover) and (min-width: 861px) {
  .split:hover .half { flex: 0.92; }
  .split .half:hover { flex: 1.18; }
}

/* фон-градиент половин */
.half::before {
  content: ""; position: absolute; inset: 0;
  transition: opacity 0.5s;
}
.half-partner::before {
  background:
    radial-gradient(ellipse 90% 70% at 30% 20%, rgba(255, 157, 0, 0.16), transparent 60%),
    linear-gradient(160deg, rgba(14, 14, 8, 0.55) 0%, rgba(7, 9, 15, 0.55) 70%);
}
.half-player::before {
  background:
    radial-gradient(ellipse 90% 70% at 70% 80%, rgba(255, 42, 104, 0.17), transparent 60%),
    linear-gradient(200deg, rgba(18, 8, 18, 0.55) 0%, rgba(7, 9, 15, 0.55) 70%);
}
/* разделитель между половинами */
.half-partner::after {
  content: ""; position: absolute; top: 12%; bottom: 12%; right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 210, 74, 0.4), rgba(255, 42, 104, 0.4), transparent);
}
.half:hover::before { opacity: 1.5; filter: brightness(1.35); }

.half-inner {
  position: relative; z-index: 2;
  max-width: 520px; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.kicker {
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-1); background: rgba(255, 210, 74, 0.1); border: 1px solid rgba(255, 210, 74, 0.3);
  animation: fadeUp 0.7s ease both;
}
.kicker-fire { color: var(--fire-1); background: rgba(255, 94, 58, 0.12); border-color: rgba(255, 94, 58, 0.4); }

/* заголовок — всегда в одну строку */
.half-title {
  margin: 16px 0 4px;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1; white-space: nowrap;
  animation: fadeUp 0.7s 0.1s ease both;
}
.half-partner .half-title { color: var(--gold-1); text-shadow: 0 0 34px rgba(255, 157, 0, 0.35); }
.half-player .half-title { color: #ff7a8f; text-shadow: 0 0 34px rgba(255, 42, 104, 0.35); }

/* ---------- компактные блоки-факты ---------- */
.points {
  list-style: none; width: 100%;
  margin: clamp(12px, 2.4vh, 28px) 0;
  display: flex; flex-direction: column; gap: clamp(8px, 1.6vh, 14px);
  animation: fadeUp 0.7s 0.2s ease both;
}
.points li {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; padding: clamp(10px, 1.8vh, 16px) 16px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s, border-color 0.3s;
}
.half-partner .points li:hover { border-color: rgba(255, 210, 74, 0.5); transform: translateX(6px); }
.half-player .points li:hover { border-color: rgba(255, 94, 58, 0.5); transform: translateX(-6px); }
.point-ic {
  flex-shrink: 0;
  width: 46px; height: 46px; display: grid; place-items: center;
  font-size: 22px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  animation: floaty 4s ease-in-out infinite;
}
.points li:nth-child(2) .point-ic { animation-delay: 0.7s; }
.points li:nth-child(3) .point-ic { animation-delay: 1.4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.points b { display: block; font-size: clamp(14px, 1.6vh, 16.5px); line-height: 1.25; }
.points p { color: var(--muted); font-size: clamp(12px, 1.5vh, 13.5px); margin-top: 3px; line-height: 1.35; }

/* ---------- кнопки ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 34px; border-radius: 999px;
  font-weight: 800; font-size: 17px; color: #1a1200;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulseGlow 2.6s ease-in-out infinite, fadeUp 0.7s 0.3s ease both;
}
.btn i { font-style: normal; font-size: 20px; }
.btn-gold { background: linear-gradient(135deg, var(--gold-1), var(--gold-2)); box-shadow: 0 10px 30px rgba(255, 157, 0, 0.35); }
.btn-fire { background: linear-gradient(135deg, var(--fire-1), var(--fire-2)); box-shadow: 0 10px 30px rgba(255, 42, 104, 0.35); color: #fff; }
.btn-block { width: 100%; max-width: 380px; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: sweep 3s ease-in-out infinite;
}
@keyframes sweep {
  0%, 55% { left: -80%; }
  100%    { left: 130%; }
}
@keyframes pulseGlow {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.12); }
}
.btn:hover { transform: translateY(-3px) scale(1.04); }
.btn-gold:hover { box-shadow: 0 16px 44px rgba(255, 157, 0, 0.6); }
.btn-fire:hover { box-shadow: 0 16px 44px rgba(255, 42, 104, 0.6); }
.btn-lg { padding: 21px 48px; font-size: 19px; }

/* 18+ на главной — снизу по центру */
.home-age {
  position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: 12.5px;
}
.age-badge {
  display: inline-grid; place-items: center;
  min-width: 34px; height: 34px; padding: 0 6px;
  border: 2px solid var(--fire-2); border-radius: 50%;
  color: var(--fire-1); font-weight: 800; font-size: 12px;
  flex-shrink: 0;
}

/* ============================================================
   ВНУТРЕННИЕ СТРАНИЦЫ (partner.html / play.html)
   ============================================================ */
.page-hero {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto;
  padding: calc(var(--header-h) + 60px) 20px 30px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(38px, 6vw, 72px); line-height: 1; margin: 16px 0; }
.page-sub { color: var(--muted); font-size: clamp(15px, 2vw, 18px); max-width: 640px; margin: 0 auto; }

.grad {
  background: linear-gradient(100deg, var(--gold-1), var(--gold-2), #ffe9a8, var(--gold-1));
  background-size: 250% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}
.grad-fire {
  background-image: linear-gradient(100deg, var(--fire-1), var(--fire-2), #ffb199, var(--fire-1));
}
@keyframes shine { to { background-position: 250% center; } }

.section-cta { position: relative; z-index: 1; text-align: center; padding: 40px 20px 80px; }

.footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 9, 15, 0.35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.footer-disc {
  max-width: 620px; margin: 0 auto;
  color: var(--muted); font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}

/* ---------- reveal-анимации ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   ПЛАНШЕТ
   ============================================================ */
@media (max-width: 860px) {
  .half-title { font-size: clamp(26px, 6.5vw, 40px); }
}

/* ============================================================
   МОБИЛЬНАЯ — половины стопкой, кнопки первыми
   ============================================================ */
@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .page-home { overflow: visible; } /* на телефоне две половины = скролл ок */
  .bonus-percent { font-size: clamp(56px, 18vw, 110px); }
  .bonus-list { text-align: center; }
  /* шапка зафиксирована сверху + полупрозрачный фон, лого не «уезжает» */
  .header-home {
    justify-content: flex-start;
    background: rgba(7, 9, 15, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .header-home .lang { position: static; margin-left: auto; }
  .brand-logo { height: 38px; }

  .split {
    flex-direction: column;
    height: auto; min-height: 100svh;
  }
  .half { padding: 40px 18px; min-height: auto; }
  .half-partner::after { display: none; }
  .half-partner { border-bottom: 1px solid rgba(255, 210, 74, 0.25); }

  /* на телефоне: кикёр, заголовок, КНОПКА — потом блоки */
  .half-inner { display: flex; flex-direction: column; }
  .half-inner .btn { order: -1; margin: 14px 0 10px; width: 100%; max-width: none; }
  .half-title { white-space: normal; }
  .points { margin-bottom: 0; }

  .home-age { display: none; }
}

/* ============================================================
   PARTNER PAGE — форма, блоки, партнёры
   ============================================================ */
.page-partner { color: #f5f5f5; }
.page-partner .page-hero { text-align: center; padding: calc(var(--header-h) + 48px) 18px 54px; }

.partner-hero .hero-top { max-width: 760px; margin: 0 auto 28px; }
.partner-hero h1 { font-size: clamp(36px, 7vw, 64px); margin-bottom: 14px; }
.partner-hero .page-sub { color: #bfc4d1; font-size: clamp(16px, 2.2vw, 20px); }

/* 3 benefit cards */
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto 34px;
}
.benefit-card {
  background: linear-gradient(145deg, rgba(28, 22, 8, 0.9), rgba(15, 12, 5, 0.92));
  border: 1px solid rgba(255, 210, 74, 0.35);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 210, 74, 0.18);
  border-color: rgba(255, 210, 74, 0.75);
}
.benefit-card .benefit-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  font-size: 28px;
  background: linear-gradient(135deg, #ffd24a, #c98a00);
  color: #0d0d0d;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(255, 210, 74, 0.28);
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.15;
  color: #ffd24a;
  margin-bottom: 10px;
}
.benefit-card p { color: #c9ced8; font-size: clamp(14px, 1.6vw, 16px); line-height: 1.55; }
.gold-shine { position: relative; overflow: hidden; }
.gold-shine::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 210, 74, 0.10) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: goldShine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes goldShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* hooks */
.section-hooks { padding: 60px 18px; background: rgba(10, 12, 19, 0.7); }
.container { max-width: 1120px; margin: 0 auto; }
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 46px);
  margin-bottom: 34px;
  background: linear-gradient(90deg, #fff, #ffd24a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hooks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hook-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
}
.hook-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 34px;
  color: #ffd24a;
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(255, 210, 74, 0.35);
}
.hook-item p { color: #d2d6e0; font-size: 15px; line-height: 1.45; }

/* registration */
.section-reg { padding: 70px 18px; }
.reg-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.reg-text .section-title { text-align: left; margin-bottom: 18px; }
.reg-text p { color: #bfc4d1; font-size: 17px; line-height: 1.6; margin-bottom: 18px; }
.reg-list { list-style: none; }
.reg-list li { font-size: 16px; color: #e9ecf2; margin-bottom: 10px; }
.reg-form {
  background: linear-gradient(145deg, rgba(26, 20, 8, 0.95), rgba(14, 11, 5, 0.98));
  border: 1px solid rgba(255, 210, 74, 0.45);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 210, 74, 0.12);
}
.reg-form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: #ffd24a;
  margin-bottom: 20px;
}
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-size: 13px; color: #bfc4d1; margin-bottom: 6px; }
.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus {
  border-color: #ffd24a;
  box-shadow: 0 0 0 3px rgba(255, 210, 74, 0.18);
}
.field input::placeholder { color: #6d7485; }
.field option { background: #15120a; color: #fff; }
.btn-block { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: #6d7485; text-align: center; margin-top: 12px; }
.form-status { margin-top: 14px; text-align: center; min-height: 24px; font-weight: 600; }
.form-status.ok { color: #4ade80; }
.form-status.err { color: #f87171; }

/* partners block */
.section-partners { padding: 60px 18px; background: rgba(8, 10, 16, 0.8); }
.section-sub { text-align: center; color: #a6adbd; font-size: 17px; max-width: 620px; margin: -18px auto 38px; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.partner-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.partner-card:hover { transform: translateY(-5px); border-color: rgba(255, 210, 74, 0.5); }
.partner-logo {
  width: 68px; height: 68px; border-radius: 50%;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  font-size: 30px;
  background: linear-gradient(135deg, rgba(255,210,74,0.18), rgba(255,210,74,0.05));
  border: 1px solid rgba(255, 210, 74, 0.35);
}
.partner-card h4 { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 4px; }
.partner-card p { color: #bfc4d1; font-size: 14px; margin-bottom: 10px; }
.partner-tag {
  display: inline-block;
  font-size: 12px;
  color: #ffd24a;
  background: rgba(255, 210, 74, 0.12);
  border: 1px solid rgba(255, 210, 74, 0.25);
  border-radius: 999px;
  padding: 4px 12px;
}

/* bottom CTA */
.page-partner .section-cta { padding: 60px 18px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 42px);
  text-align: center;
  margin-bottom: 22px;
  color: #fff;
}

/* responsive partner page */
@media (max-width: 900px) {
  .partner-benefits { grid-template-columns: 1fr; }
  .hooks-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-layout { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-text .section-title { text-align: center; }
}
@media (max-width: 520px) {
  .hooks-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-benefits { gap: 14px; }
}

.bonus-hero { text-align: center; margin-bottom: 18px; }
.bonus-percent {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 150px);
  line-height: 0.85;
  background: linear-gradient(180deg, #ff5e5e 0%, #ff2a2a 40%, #ffd24a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 50px rgba(255, 60, 60, 0.45);
  animation: bonusPulse 2.2s ease-in-out infinite;
}
@keyframes bonusPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 50px rgba(255, 60, 60, 0.45); }
  50% { transform: scale(1.04); text-shadow: 0 0 80px rgba(255, 60, 60, 0.75); }
}
.bonus-sub {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 700;
  color: #fff;
  margin: 10px 0 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.bonus-list {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: clamp(13px, 1.6vw, 16px);
  color: #f0d6d6;
}
.bonus-list li { display: flex; align-items: center; gap: 8px; }

/* ---------- уменьшенная анимация ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
