/* ============================================== */
/* === WINDERLAND CASINO — main.css            === */
/* === Тёмный VIP-салон с золотом и матовым    === */
/* === шиком. Без неона, без фреймворков.       === */
/* ============================================== */

/* === Переменные === */
:root {
  --noir: #0a0a0b;
  --charcoal: #161618;
  --graphite: #1f2024;
  --midnight: #0d1320;
  --midnight-deep: #060912;

  --gold: #c9a961;
  --gold-light: #e8c878;
  --gold-deep: #8b6f30;
  --gold-shine: #f4dca0;

  --platinum: #d4d4d8;
  --platinum-soft: #a8a8ac;
  --bronze: #8a5a2b;
  --burgundy: #5c1a2b;
  --emerald: #0f4c3a;
  --sapphire: #1a3a5c;

  --text: #e8e6df;
  --text-muted: #a8a59a;
  --text-dim: #6b6960;

  --border-gold: rgba(201, 169, 97, 0.25);
  --border-gold-strong: rgba(201, 169, 97, 0.5);

  --shadow-deep: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 40px -10px rgba(201, 169, 97, 0.4);

  --radius: 4px;
  --radius-lg: 8px;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Work Sans", system-ui, -apple-system, sans-serif;
}

/* === Базовые стили === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--noir);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Зерно поверх всего сайта для атмосферы */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: overlay;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--noir);
}

/* Контейнер */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.container--narrow {
  max-width: 820px;
}

/* === Типографика === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: var(--text);
}

em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--serif);
}

/* ============================================== */
/* === SECTION HEAD                            === */
/* ============================================== */

.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding: 0 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-eyebrow::before { right: 100%; }
.section-eyebrow::after { left: 100%; }

.section-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================== */
/* === HEADER / NAVIGATION                     === */
/* ============================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 11, 0.65);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border-gold);
  transition: padding 0.4s ease, background 0.4s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 11, 0.88);
  border-bottom-color: var(--border-gold-strong);
}

.header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Брендовый блок с логотипом */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(201, 169, 97, 0.25));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.brand:hover .brand-mark {
  filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.5));
  transform: rotate(-3deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text);
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* Главное меню */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--text);
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: width 0.4s ease, left 0.4s ease;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  width: 70%;
  left: 15%;
}

/* Хэдер действия */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--platinum);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  background: rgba(201, 169, 97, 0.04);
}

/* Бургер */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 8px 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Мобильное меню */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 11, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 24px 32px;
  animation: fadeSlideDown 0.4s ease;
}

.mobile-nav[hidden="false"],
.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--text);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-gold);
}

.mobile-nav .btn-gold {
  margin-top: 16px;
  text-align: center;
}

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

/* ============================================== */
/* === BUTTONS — золотые кнопки в стиле       === */
/* === роскошного слот-автомата                === */
/* ============================================== */

/* Главная золотая кнопка с эффектом стекла */
.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #1a1408;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  border: 1px solid var(--gold-light);
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -2px 0 rgba(0, 0, 0, 0.2) inset,
    0 8px 24px -8px rgba(201, 169, 97, 0.5);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold:hover {
  color: #1a1408;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -2px 0 rgba(0, 0, 0, 0.2) inset,
    0 12px 32px -8px rgba(201, 169, 97, 0.7);
}

.btn-gold:active {
  transform: translateY(0);
}

/* Бегущий блик по кнопке */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.btn-gold:hover .btn-shine {
  animation: shineSlide 0.9s ease;
}

@keyframes shineSlide {
  0% { left: -100%; }
  100% { left: 200%; }
}

.btn-gold--lg {
  padding: 18px 40px;
  font-size: 13px;
  letter-spacing: 0.28em;
}

.btn-gold--sm {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.btn-gold--block {
  display: flex;
  width: 100%;
}

/* Призрачная кнопка с золотой рамкой */
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--border-gold-strong);
  border-radius: 2px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-ghost::before,
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(201, 169, 97, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-ghost:hover,
.btn-outline:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px rgba(201, 169, 97, 0.4);
}

.btn-ghost:hover::before,
.btn-outline:hover::before {
  opacity: 1;
}

.btn-outline--lg {
  padding: 18px 36px;
  font-size: 13px;
}

.btn-outline--block {
  display: flex;
  width: 100%;
}

/* ============================================== */
/* === HERO — первый экран                    === */
/* ============================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  overflow: hidden;
}

/* Слои фона */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(92, 26, 43, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(26, 58, 92, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(13, 19, 32, 1) 0%, var(--noir) 70%);
}

/* Золотая дымка с анимацией */
.hero-bg-haze {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 169, 97, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(232, 200, 120, 0.12) 0%, transparent 30%);
  filter: blur(60px);
  animation: hazeMove 20s ease-in-out infinite alternate;
}

@keyframes hazeMove {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.05); }
}

/* Геометрический узор */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(201, 169, 97, 0.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(201, 169, 97, 0.025) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(201, 169, 97, 0.025) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(201, 169, 97, 0.025) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0;
  opacity: 0.5;
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(0, 0, 0, 0.5) 80%,
    var(--noir) 100%
  );
}

/* Декоративные карточные масти в углах */
.hero-deco {
  position: absolute;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
}

.hero-deco--left {
  top: 18%;
  left: 4%;
  transform: rotate(-15deg);
}

.hero-deco--right {
  bottom: 18%;
  right: 4%;
  transform: rotate(20deg);
}

.card-silhouette {
  width: 180px;
  height: 240px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.04), transparent);
  animation: floatCard 8s ease-in-out infinite;
}

.hero-deco--right .card-silhouette {
  animation-delay: -4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Внутренности героя */
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  width: 100%;
}

/* Eyebrow с двумя линиями */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s ease 0.1s forwards;
}

.eyebrow-line {
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold);
  white-space: nowrap;
}

/* Главный заголовок */
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.3s forwards;
}

.hero-title-line {
  display: block;
  color: var(--text);
}

.hero-title-accent {
  display: block;
  font-style: italic;
  color: var(--gold);
  background: linear-gradient(180deg, var(--gold-shine) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
  letter-spacing: -0.02em;
}

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

.hero-lead {
  color: var(--text-muted);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

/* Бонус-карточка в герое */
.hero-bonus {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 56px;
  margin-bottom: 36px;
  background: linear-gradient(
    135deg,
    rgba(20, 16, 8, 0.8) 0%,
    rgba(36, 28, 12, 0.85) 50%,
    rgba(20, 16, 8, 0.8) 100%
  );
  border: 1px solid var(--border-gold-strong);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-bonus::before,
.hero-bonus::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
}

.hero-bonus::before {
  top: 6px;
  left: 6px;
  border-right: none;
  border-bottom: none;
}

.hero-bonus::after {
  bottom: 6px;
  right: 6px;
  border-left: none;
  border-top: none;
}

.hero-bonus-shine {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(232, 200, 120, 0.15),
    transparent
  );
  animation: bonusShine 4s ease-in-out infinite;
}

@keyframes bonusShine {
  0%, 100% { left: -50%; }
  50% { left: 100%; }
}

.hero-bonus-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-bonus-tag {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-bonus-main {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  background: linear-gradient(180deg, var(--gold-shine), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.hero-bonus-sub {
  color: var(--platinum);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* CTA кнопки в герое */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

/* Лента доверия */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 18px 28px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  border-radius: 2px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--platinum);
  text-transform: uppercase;
}

.trust-item i {
  color: var(--gold);
  font-size: 14px;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border-gold);
}

/* Скролл-индикатор */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.scroll-down:hover {
  opacity: 1;
  color: var(--gold-light);
}

.scroll-down-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}

.scroll-down-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-light));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================== */
/* === BONUSES                                 === */
/* ============================================== */

.bonuses {
  padding: 120px 0 100px;
  background:
    linear-gradient(180deg, var(--noir) 0%, var(--charcoal) 100%);
  position: relative;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.bonus-card {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(160deg, rgba(31, 32, 36, 0.9) 0%, rgba(13, 13, 15, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-strong);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7), 0 0 40px -10px rgba(201, 169, 97, 0.2);
}

/* Декоративная рамка из золотых уголков */
.bonus-card-frame {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid transparent;
  background:
    linear-gradient(to right, var(--gold) 0%, transparent 8%, transparent 92%, var(--gold) 100%) top/100% 1px no-repeat,
    linear-gradient(to right, var(--gold) 0%, transparent 8%, transparent 92%, var(--gold) 100%) bottom/100% 1px no-repeat,
    linear-gradient(to bottom, var(--gold) 0%, transparent 8%, transparent 92%, var(--gold) 100%) left/1px 100% no-repeat,
    linear-gradient(to bottom, var(--gold) 0%, transparent 8%, transparent 92%, var(--gold) 100%) right/1px 100% no-repeat;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.bonus-card:hover .bonus-card-frame {
  opacity: 1;
}

.bonus-card--main {
  background: linear-gradient(160deg, rgba(36, 28, 12, 0.9) 0%, rgba(20, 16, 8, 0.95) 100%);
  border-color: var(--border-gold-strong);
}

.bonus-card--main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 169, 97, 0.15), transparent 60%);
  pointer-events: none;
}

.bonus-ribbon {
  position: absolute;
  top: 16px;
  right: -36px;
  padding: 4px 40px;
  background: linear-gradient(135deg, var(--burgundy), #3d0f1d);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transform: rotate(35deg);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  z-index: 2;
}

.bonus-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.12), rgba(201, 169, 97, 0.02));
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 24px;
  position: relative;
  z-index: 1;
}

.bonus-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.bonus-card-amount {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-shine), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.bonus-card-amount span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  background: none;
  -webkit-text-fill-color: var(--platinum);
  color: var(--platinum);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.bonus-card-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bonus-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.bonus-card-features li:last-child {
  border-bottom: none;
}

.bonus-card-features i {
  color: var(--gold);
  font-size: 11px;
  margin-top: 5px;
}

.bonus-card-tnc {
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ============================================== */
/* === GAMES — каталог                         === */
/* ============================================== */

.games {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
}

.games::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-gold), transparent);
}

/* Табы — стиль брашед-метал */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-bottom: 56px;
  padding: 6px;
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.6), rgba(31, 32, 36, 0.6));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--platinum-soft);
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.tab i {
  font-size: 13px;
}

.tab:hover {
  color: var(--gold);
  background: rgba(201, 169, 97, 0.05);
}

.tab--active {
  color: var(--noir);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  box-shadow: 0 4px 16px -4px rgba(201, 169, 97, 0.4);
}

.tab--active:hover {
  color: var(--noir);
}

/* Сетка игр */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.game-card {
  position: relative;
  background: linear-gradient(160deg, var(--graphite), var(--charcoal));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.8), 0 0 24px -8px rgba(201, 169, 97, 0.4);
}

.game-card-frame {
  position: absolute;
  inset: 6px;
  pointer-events: none;
  border: 1px solid transparent;
  background:
    linear-gradient(to right, var(--gold), transparent 6%, transparent 94%, var(--gold)) top/100% 1px no-repeat,
    linear-gradient(to right, var(--gold), transparent 6%, transparent 94%, var(--gold)) bottom/100% 1px no-repeat,
    linear-gradient(to bottom, var(--gold), transparent 6%, transparent 94%, var(--gold)) left/1px 100% no-repeat,
    linear-gradient(to bottom, var(--gold), transparent 6%, transparent 94%, var(--gold)) right/1px 100% no-repeat;
  opacity: 0.4;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.game-card:hover .game-card-frame {
  opacity: 1;
}

.game-card-thumb {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: var(--midnight-deep);
}

/* Плейсхолдеры игр */
.game-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  transition: transform 0.6s ease;
}

.game-thumb-placeholder i {
  font-size: 56px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.game-thumb-placeholder span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 12px;
  color: var(--text);
}

.game-thumb--burgundy {
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.2), transparent 60%),
    linear-gradient(135deg, #3d0f1d, var(--burgundy), #2a0a14);
}

.game-thumb--emerald {
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.2), transparent 60%),
    linear-gradient(135deg, #0a2820, var(--emerald), #051812);
}

.game-thumb--midnight {
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.18), transparent 60%),
    linear-gradient(135deg, var(--midnight), var(--midnight-deep));
}

.game-thumb--gold {
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 200, 120, 0.4), transparent 60%),
    linear-gradient(135deg, #4a3818, #2a1f0c);
}

.game-thumb--sapphire {
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.2), transparent 60%),
    linear-gradient(135deg, var(--sapphire), #0d1f30);
}

.game-card:hover .game-thumb-placeholder {
  transform: scale(1.05);
}

/* Оверлей с кнопкой play */
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.game-play-btn {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  color: var(--noir);
  font-size: 18px;
  padding-left: 4px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 8px 24px rgba(0, 0, 0, 0.6),
    0 0 24px rgba(201, 169, 97, 0.5);
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.game-card:hover .game-play-btn {
  transform: scale(1);
}

.game-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--noir);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 2px;
  z-index: 3;
}

.game-card-badge--live {
  background: linear-gradient(135deg, #c43030, #8a1a1a);
  color: #fff;
}

.game-card-badge--live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin-right: 5px;
  animation: livePulse 1.5s ease infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.game-card-body {
  padding: 16px 18px 18px;
}

.game-card-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.game-card-meta {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.games-cta {
  margin-top: 56px;
  text-align: center;
}

/* Скрытие игр при фильтрации */
.game-card.is-hidden {
  display: none;
}

/* ============================================== */
/* === VIP                                     === */
/* ============================================== */

.vip {
  padding: 120px 0;
  position: relative;
  background: var(--noir);
  overflow: hidden;
}

.vip-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(92, 26, 43, 0.2), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 169, 97, 0.08), transparent 50%);
}

.vip-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vip-content .section-eyebrow {
  margin-bottom: 18px;
}

.vip-content .section-eyebrow::before,
.vip-content .section-eyebrow::after {
  display: none;
}

.vip-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.vip-lead {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.vip-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.vip-perk {
  display: flex;
  gap: 16px;
}

.vip-perk-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.12), rgba(201, 169, 97, 0.02));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--gold);
  font-size: 16px;
}

.vip-perk h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.vip-perk p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Уровни VIP */
.vip-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vip-tier {
  position: relative;
  padding: 32px 24px;
  background: linear-gradient(160deg, rgba(31, 32, 36, 0.7), rgba(13, 13, 15, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.vip-tier:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.vip-tier-medal {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  position: relative;
}

.vip-tier-medal::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.4;
}

.vip-tier--bronze .vip-tier-medal {
  color: var(--bronze);
  background: linear-gradient(135deg, rgba(138, 90, 43, 0.2), transparent);
}

.vip-tier--silver .vip-tier-medal {
  color: var(--platinum);
  background: linear-gradient(135deg, rgba(212, 212, 216, 0.15), transparent);
}

.vip-tier--gold .vip-tier-medal {
  color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), transparent);
}

.vip-tier--platinum .vip-tier-medal {
  color: var(--gold-light);
  background: linear-gradient(135deg, rgba(232, 200, 120, 0.25), transparent);
  box-shadow: 0 0 20px rgba(232, 200, 120, 0.2);
}

.vip-tier h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.vip-tier p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================== */
/* === FEATURES                                === */
/* ============================================== */

.features {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
}

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

.feature-card {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(160deg, rgba(31, 32, 36, 0.8), rgba(13, 13, 15, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-strong);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.02));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--gold);
  font-size: 22px;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================== */
/* === STEPS                                   === */
/* ============================================== */

.steps {
  padding: 120px 0;
  background: var(--noir);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 56px;
}

.step-card {
  position: relative;
  padding: 40px 28px;
  background: linear-gradient(160deg, rgba(31, 32, 36, 0.7), rgba(13, 13, 15, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  text-align: center;
  transition: transform 0.4s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-strong);
}

.step-number {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.4;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
}

.step-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 18px;
  opacity: 0.6;
}

.steps-cta {
  text-align: center;
}

.steps-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.steps-note i {
  color: var(--gold);
  margin-right: 6px;
}

/* ============================================== */
/* === FAQ                                     === */
/* ============================================== */

.faq {
  padding: 120px 0;
  background: var(--charcoal);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: linear-gradient(160deg, rgba(31, 32, 36, 0.6), rgba(13, 13, 15, 0.8));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: var(--border-gold-strong);
}

.faq-item summary {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--gold-light); }

.faq-item summary i {
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.4s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  padding-top: 18px;
  margin-top: -1px;
}

/* ============================================== */
/* === FINAL CTA                               === */
/* ============================================== */

.final-cta {
  padding: 120px 0;
  position: relative;
  background: var(--noir);
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 169, 97, 0.12), transparent 60%),
    radial-gradient(ellipse at 30% 100%, rgba(92, 26, 43, 0.2), transparent 60%);
}

.final-cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 32px;
  background: linear-gradient(160deg, rgba(20, 16, 8, 0.6), rgba(13, 13, 15, 0.85));
  border: 1px solid var(--border-gold-strong);
  border-radius: 4px;
  position: relative;
}

.final-cta-inner::before,
.final-cta-inner::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
}

.final-cta-inner::before {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.final-cta-inner::after {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

.final-cta-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}

.final-cta-lead {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.final-cta-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* ============================================== */
/* === FOOTER                                  === */
/* ============================================== */

.site-footer {
  background: linear-gradient(180deg, var(--noir), var(--midnight-deep));
  border-top: 1px solid var(--border-gold);
  padding-top: 80px;
  position: relative;
}

.footer-top {
  padding: 0 24px 60px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 56px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text);
  text-transform: uppercase;
}

.footer-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 360px;
}

/* Социальные иконки в виде золотых жетонов */
.footer-socials {
  display: flex;
  gap: 12px;
}

.social-coin {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.06), rgba(201, 169, 97, 0.02));
  color: var(--gold);
  font-size: 14px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-coin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-coin:hover {
  color: var(--noir);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(201, 169, 97, 0.4);
}

.social-coin:hover::before {
  opacity: 1;
}

.social-coin i {
  position: relative;
  z-index: 1;
}

/* Колонки футера */
.footer-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-flex;
  align-items: center;
}

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

.footer-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.footer-contact p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
  width: 16px;
}

/* Платежи */
.footer-payments {
  padding: 32px 24px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  text-align: center;
}

.payments-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.payments-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.payment-pill {
  padding: 8px 18px;
  background: linear-gradient(180deg, rgba(31, 32, 36, 0.8), rgba(13, 13, 15, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  color: var(--platinum);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.payment-pill:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* Ответственная игра */
.footer-responsible {
  padding: 36px 24px;
  background: rgba(0, 0, 0, 0.4);
}

.responsible-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.responsible-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.age-badge {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--burgundy);
  border-radius: 50%;
  color: #d4253b;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  background: rgba(92, 26, 43, 0.15);
  letter-spacing: 0.02em;
}

.age-badge--inline {
  width: 36px;
  height: 36px;
  font-size: 13px;
  display: inline-flex;
}

.responsible-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(92, 26, 43, 0.15);
  border: 1px solid rgba(212, 37, 59, 0.3);
  border-radius: 100px;
  color: #d4253b;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.responsible-text p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.responsible-text strong {
  color: var(--platinum);
  font-weight: 500;
}

.help-list {
  list-style: none;
  margin: 12px 0;
  padding: 16px;
  background: rgba(13, 19, 32, 0.6);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
}

.help-list li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.help-list li:last-child {
  margin-bottom: 0;
}

.help-list strong {
  color: var(--gold);
  font-weight: 500;
}

.wagering-note {
  padding-top: 12px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  font-size: 12px;
  color: var(--text-dim);
}

/* Низ футера */
.footer-bottom {
  padding: 24px;
  background: var(--midnight-deep);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.copyright,
.license {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.license {
  text-align: right;
}

/* ============================================== */
/* === SINGLE / LIST PAGES                     === */
/* ============================================== */

.single-page,
.list-page {
  padding: 160px 0 100px;
  min-height: 80vh;
}

.single-head {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-gold);
}

.single-title {
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 12px;
}

.single-meta {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.prose-gold h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--gold);
}

.prose-gold h3 {
  font-size: 22px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.prose-gold p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.8;
}

.prose-gold ul {
  list-style: none;
  margin-bottom: 20px;
}

.prose-gold ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.prose-gold ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 11px;
  top: 4px;
}

.single-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-gold);
  text-align: center;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.list-item {
  position: relative;
  padding: 32px;
  background: linear-gradient(160deg, rgba(31, 32, 36, 0.7), rgba(13, 13, 15, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.list-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.list-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 12px;
}

.list-item h3 a { color: var(--text); }
.list-item h3 a:hover { color: var(--gold-light); }

.list-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.list-item-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================== */
/* === АДАПТИВ                                 === */
/* ============================================== */

@media (max-width: 1100px) {
  .bonus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bonus-card--main {
    grid-column: span 2;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vip-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .vip-content .section-title {
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 880px) {
  .main-nav {
    display: none;
  }

  .header-actions .lang-pill {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    padding: 0 20px;
  }

  .brand-tagline { display: none; }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .vip-perks {
    grid-template-columns: 1fr;
  }

  .vip-tiers {
    grid-template-columns: 1fr 1fr;
  }

  .responsible-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .help-list {
    text-align: left;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .license {
    text-align: center;
  }

  .hero-deco { display: none; }

  .hero-trust {
    gap: 12px;
    padding: 14px 18px;
  }

  .trust-divider { display: none; }

  .trust-item {
    flex: 0 0 calc(50% - 12px);
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card--main {
    grid-column: span 1;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    padding: 110px 16px 80px;
    min-height: 90vh;
  }

  .hero-bonus {
    padding: 18px 32px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-gold,
  .hero-cta .btn-ghost {
    width: 100%;
  }

  .container {
    padding: 0 16px;
  }

  .bonuses,
  .games,
  .vip,
  .features,
  .steps,
  .faq,
  .final-cta {
    padding: 80px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .tabs {
    padding: 4px;
    gap: 2px;
  }

  .tab {
    flex: 0 0 calc(50% - 1px);
    padding: 10px 12px;
    font-size: 10px;
  }

  .tab span { font-size: 10px; }
}

/* ============================================== */
/* === REDUCED MOTION                          === */
/* ============================================== */
@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; }
}

/* ============================================== */
/* === LEGAL PAGE (Smluvní podmínky)            === */
/* ============================================== */

.legal-page {
  background:
    radial-gradient(ellipse at top, rgba(92, 26, 43, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(26, 58, 92, 0.06), transparent 60%),
    var(--noir);
  min-height: 100vh;
  padding-top: 100px;
}

/* Hero */
.legal-hero {
  position: relative;
  padding: 80px 24px 60px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(201, 169, 97, 0.08), transparent 70%);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal-eyebrow .line-deco {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.legal-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--platinum);
  letter-spacing: -0.01em;
}

.legal-lead {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(212, 212, 216, 0.7);
  margin: 0 auto 32px;
  max-width: 720px;
}

.legal-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212, 212, 216, 0.55);
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-meta i {
  color: var(--gold);
  font-size: 11px;
}

/* Shell + grid */
.legal-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* TOC sticky */
.legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.legal-toc::-webkit-scrollbar { width: 4px; }
.legal-toc::-webkit-scrollbar-track { background: transparent; }
.legal-toc::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 97, 0.2);
  border-radius: 2px;
}

.legal-toc-inner {
  background: linear-gradient(180deg, rgba(31, 32, 36, 0.6), rgba(22, 22, 24, 0.4));
  border: 1px solid rgba(201, 169, 97, 0.12);
  border-radius: 4px;
  padding: 28px 24px;
}

.legal-toc-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.legal-toc nav ul,
.legal-toc nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-toc nav ul ul,
.legal-toc nav ol ol {
  padding-left: 14px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.legal-toc nav li {
  margin: 8px 0;
}

.legal-toc nav a {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(212, 212, 216, 0.65);
  text-decoration: none;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -14px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-toc nav a:hover {
  color: var(--gold-light);
  border-left-color: var(--gold);
}

.legal-back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 169, 97, 0.12);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 212, 216, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-back-top:hover { color: var(--gold); }

/* Content */
.legal-content {
  max-width: 800px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(212, 212, 216, 0.82);
}

.legal-content > p:first-of-type {
  font-size: 17px;
  color: rgba(212, 212, 216, 0.92);
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(92, 26, 43, 0.12), rgba(31, 32, 36, 0.4));
  border-left: 3px solid var(--burgundy);
  border-radius: 2px;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--platinum);
  margin: 60px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
  position: relative;
}

.legal-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gold-light);
  margin: 36px 0 16px;
}

.legal-content p {
  margin: 16px 0;
}

.legal-content strong {
  color: var(--platinum);
  font-weight: 600;
}

.legal-content em {
  color: rgba(212, 212, 216, 0.95);
  font-style: italic;
}

.legal-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 97, 0.3);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.legal-content a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0 24px;
  padding-left: 28px;
}

.legal-content li {
  margin: 8px 0;
}

.legal-content ul li::marker {
  color: var(--gold);
}

.legal-content ol li::marker {
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

/* Tables */
.legal-content table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  background: rgba(22, 22, 24, 0.5);
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 4px;
  overflow: hidden;
  font-size: 14px;
}

.legal-content thead {
  background: linear-gradient(90deg, rgba(201, 169, 97, 0.08), rgba(201, 169, 97, 0.02));
}

.legal-content th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.legal-content td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
  color: rgba(212, 212, 216, 0.82);
  vertical-align: top;
}

.legal-content tbody tr:last-child td {
  border-bottom: none;
}

.legal-content tbody tr:hover {
  background: rgba(201, 169, 97, 0.03);
}

/* Horizontal rule */
.legal-content hr {
  margin: 60px 0;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.4), transparent);
}

/* Footer note */
.legal-footer-note {
  margin-top: 60px;
  padding: 24px 28px;
  background: rgba(31, 32, 36, 0.5);
  border: 1px solid rgba(201, 169, 97, 0.12);
  border-radius: 4px;
  font-size: 13px;
  color: rgba(212, 212, 216, 0.65);
}

.legal-footer-note i {
  color: var(--gold);
  margin-right: 8px;
}

.legal-footer-note p { margin: 0; }

/* Adaptive */
@media (max-width: 1100px) {
  .legal-grid {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }
}

@media (max-width: 880px) {
  .legal-page { padding-top: 80px; }

  .legal-hero { padding: 60px 24px 40px; }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-toc {
    position: static;
    max-height: none;
    margin-bottom: 32px;
  }

  .legal-toc-inner { padding: 20px 18px; }

  .legal-toc-title { font-size: 10px; }

  .legal-shell { padding: 32px 18px 60px; }

  .legal-content { font-size: 15px; }

  .legal-content h2 { font-size: 26px; margin: 40px 0 18px; }

  .legal-content h3 { font-size: 18px; margin: 28px 0 12px; }

  .legal-content > p:first-of-type {
    padding: 20px 22px;
    font-size: 15px;
  }

  .legal-content table { font-size: 13px; }

  .legal-content th,
  .legal-content td { padding: 10px 12px; }
}

@media (max-width: 640px) {
  .legal-meta {
    gap: 12px 16px;
    font-size: 10px;
  }

  .legal-content > p:first-of-type {
    padding: 16px 18px;
  }

  .legal-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
