/* ============================================================
   Dragon Casino / Dragon Gold — CSS
   ============================================================ */

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

:root {
  --bg:          #0b0505;
  --bg2:         #130808;
  --bg3:         #1a0d0d;
  --card:        #1e1010;
  --card2:       #281515;
  --card3:       #2e1a1a;
  --accent:      #ffcb3a;
  --accent2:     #ffa82d;
  --accent3:     #ffe06a;
  --red:         #c10626;
  --red2:        #e03040;
  --text:        #fff5f0;
  --muted:       #c8a898;
  --muted2:      #ddc8bc;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(255,203,58,0.22);
  --border-red:  rgba(193,6,38,0.35);
  --glow-gold:   0 0 20px rgba(255,203,58,0.28);
  --glow-red:    0 0 20px rgba(193,6,38,0.4);
  --shadow:      0 10px 40px rgba(0,0,0,0.6);
  --radius:      18px;
  --radius-sm:   12px;
  --radius-xs:   8px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,203,58,0.55); }
  50%       { box-shadow: 0 0 0 12px rgba(255,203,58,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #1a0a00;
  font-weight: 800;
}
.btn--primary:hover {
  background: linear-gradient(90deg, var(--accent3), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,203,58,0.4);
}
.btn--primary.btn--pulse { animation: pulse-gold 2.2s infinite; }

.btn--red {
  background: linear-gradient(90deg, var(--red), #f03050);
  color: #fff;
}
.btn--red:hover {
  background: linear-gradient(90deg, #e0142e, #f04060);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,6,38,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn--ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border-color: rgba(255,255,255,0.1);
}
.btn--ghost:hover { background: rgba(255,255,255,0.13); }

.btn--lg { padding: 15px 36px; font-size: 1.05rem; }
.btn--sm { padding: 7px 16px; font-size: 0.82rem; }
.btn--full { width: 100%; }

/* ── LOGO ────────────────────────────────────────────────── */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #1a0a00;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.85rem; flex-shrink: 0;
}
.logo__text { display: flex; flex-direction: column; }
.logo__main { font-weight: 900; font-size: 1.1rem; line-height: 1.1; }
.logo__sub  { font-size: 0.65rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; }
.logo__img  { height: 42px; width: auto; object-fit: contain; }
.logo__fallback { display: none; align-items: center; gap: 10px; }

/* ── HEADER ──────────────────────────────────────────────── */
.topbar {
  background: var(--red);
  padding: 7px 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.topbar a { color: var(--accent); text-decoration: underline; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #c10626 0%, #e04f29 100%);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 70px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav a {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  transition: all 0.2s;
}
.nav a:hover { color: var(--accent); background: rgba(0,0,0,0.15); }
.header__actions { display: flex; align-items: center; gap: 8px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__inner {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg3);
  border-left: 1px solid var(--border);
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 20px;
  transform: translateX(100%); transition: transform 0.3s;
  overflow-y: auto;
}
.mobile-menu.open .mobile-menu__inner { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-close {
  background: none; border: none; color: var(--text);
  font-size: 1.4rem; cursor: pointer; padding: 4px 8px;
}
.mobile-menu__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__links a {
  padding: 12px 16px; border-radius: 10px;
  font-size: 0.95rem; color: var(--muted2);
  transition: all 0.2s; border: 1px solid transparent;
}
.mobile-menu__links a:hover {
  color: var(--accent); background: rgba(255,203,58,0.06); border-color: var(--border-gold);
}
.mobile-menu__btns { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(193,6,38,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(255,168,45,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 90%, rgba(255,203,58,0.05) 0%, transparent 50%);
}
.hero .container {
  position: relative;
  display: flex; align-items: center; gap: 56px;
}
.hero__content { flex: 1; min-width: 0; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.hero__badge {
  background: linear-gradient(90deg, var(--red), var(--red2));
  color: #fff; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: 20px;
}
.hero__rating {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.85rem; font-weight: 700;
}
.hero__stars { color: var(--accent); letter-spacing: 1px; }
.hero__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900; line-height: 1.08; margin-bottom: 18px;
}
.hero__title .highlight {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__title .red { color: var(--red2); }
.hero__desc {
  font-size: 1.05rem; color: var(--muted2);
  margin-bottom: 28px; max-width: 530px; line-height: 1.7;
}
.hero__offer {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}
.offer-pill {
  display: flex; flex-direction: column;
  background: linear-gradient(135deg, rgba(193,6,38,0.25), rgba(255,168,45,0.1));
  border: 1px solid var(--border-gold);
  border-radius: 14px; padding: 14px 20px;
}
.offer-pill__label {
  font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.offer-pill__value {
  font-size: 1.65rem; font-weight: 900; color: var(--accent); line-height: 1.1;
}
.offer-pill--nd .offer-pill__value { color: var(--accent2); font-size: 1.3rem; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__stats {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat strong { font-size: 1.5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.hero__stat span { font-size: 0.76rem; color: var(--muted); margin-top: 3px; }
.hero__visual { flex: 0 0 500px; max-width: 500px; }
.hero__img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ── RATING BAR ──────────────────────────────────────────── */
.rating-bar {
  background: var(--card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.rating-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.rating-item {
  display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
}
.rating-item__icon { font-size: 1.1rem; }
.rating-item__val { font-weight: 800; color: var(--accent); }
.rating-item__lbl { color: var(--muted); }

/* ── SECTION GENERIC ─────────────────────────────────────── */
.section { padding: 80px 0; }
.section--dark { background: var(--bg2); }
.section--darker { background: var(--bg3); }
.section--card { background: var(--card); }

.section__head { text-align: center; margin-bottom: 52px; }
.section__tag {
  display: inline-block; margin-bottom: 12px;
  background: rgba(255,203,58,0.1); border: 1px solid var(--border-gold);
  color: var(--accent); font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 14px; border-radius: 20px;
}
.section__title {
  font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 900; margin-bottom: 12px; line-height: 1.2;
}
.section__title .gold { color: var(--accent); }
.section__title .red  { color: var(--red2); }
.section__subtitle { color: var(--muted2); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.section__cta { text-align: center; margin-top: 40px; }

/* ── FEATURES GRID ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--accent));
  opacity: 0; transition: opacity 0.25s;
}
.feature-card:hover {
  border-color: var(--border-gold); transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(193,6,38,0.2), rgba(255,203,58,0.1));
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.feature-card__title { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.feature-card__desc { font-size: 0.88rem; color: var(--muted2); line-height: 1.6; }

/* ── OVERVIEW BOX ────────────────────────────────────────── */
.overview-box {
  background: linear-gradient(135deg, rgba(193,6,38,0.15), rgba(124,58,237,0.1));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex; align-items: center; gap: 40px;
  margin-bottom: 64px;
}
.overview-logo img { height: 56px; width: auto; }
.overview-info { flex: 1; }
.overview-info h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 6px; }
.overview-info p { font-size: 0.9rem; color: var(--muted2); }
.overview-stats {
  display: flex; gap: 28px;
}
.ov-stat { display: flex; flex-direction: column; text-align: center; }
.ov-stat__val { font-size: 1.6rem; font-weight: 900; color: var(--accent); line-height: 1; }
.ov-stat__lbl { font-size: 0.72rem; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.05em; }
.overview-btn { flex-shrink: 0; }

/* ── GAMES ───────────────────────────────────────────────── */
.games-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 20px; border-radius: 50px;
  border: 1px solid var(--border); background: var(--card);
  color: var(--muted); font-size: 0.88rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(90deg, var(--red), var(--red2));
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(193,6,38,0.35);
}
.games-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.game-card {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--card); cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
}
.game-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.6); }
.game-card.hidden { display: none; }
.game-card__img { aspect-ratio: 4/3; overflow: hidden; }
.game-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.game-card:hover .game-card__img img { transform: scale(1.07); }
.game-card__badge {
  position: absolute; top: 8px; left: 8px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  color: #fff; font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; padding: 3px 9px; border-radius: 6px;
}
.game-card__badge--gold {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #1a0a00;
}
.game-card__info {
  padding: 10px 12px; display: flex; justify-content: space-between; align-items: center;
}
.game-card__name { font-size: 0.84rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card__rtp  { font-size: 0.73rem; color: var(--accent); font-weight: 700; white-space: nowrap; margin-left: 8px; }
.game-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity 0.25s;
}
.game-card:hover .game-card__overlay { opacity: 1; }

/* ── CATEGORIES LIST ─────────────────────────────────────── */
.categories-list {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 28px;
}
.cat-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  background: var(--card); border: 1px solid var(--border);
  font-size: 0.88rem; font-weight: 600; color: var(--muted2);
  cursor: pointer; transition: all 0.2s;
}
.cat-chip:hover { border-color: var(--border-gold); color: var(--accent); }
.cat-chip__icon { font-size: 1.1rem; }
.cat-chip__count { font-size: 0.72rem; color: var(--muted); margin-left: 4px; }

/* ── BONUSES ─────────────────────────────────────────────── */
.bonuses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bonus-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.bonus-card:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: var(--glow-gold); }
.bonus-card--main {
  background: linear-gradient(135deg, rgba(193,6,38,0.2), rgba(255,203,58,0.06));
  border-color: var(--border-gold);
}
.bonus-card__tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  color: #fff; font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 10px; border-radius: 20px; align-self: flex-start;
}
.bonus-card__title { font-size: 1.3rem; font-weight: 900; color: var(--accent); line-height: 1.2; }
.bonus-card__desc  { font-size: 0.88rem; color: var(--muted2); flex: 1; line-height: 1.6; }
.bonus-card__list  { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.bonus-card__list li {
  font-size: 0.84rem; color: var(--muted2); padding-left: 16px; position: relative;
}
.bonus-card__list li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); }

/* ── VIP TIERS ───────────────────────────────────────────── */
.vip-section { padding: 80px 0; background: var(--bg3); }
.vip-tiers {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.vip-tier {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 14px; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.vip-tier:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.vip-tier__icon { font-size: 2rem; margin-bottom: 10px; line-height: 1; }
.vip-tier__name { font-size: 0.82rem; font-weight: 800; margin-bottom: 4px; }
.vip-tier__desc { font-size: 0.72rem; color: var(--muted); }
.vip-tier--1 { background: linear-gradient(135deg, rgba(184,115,51,0.12), var(--card)); border-color: rgba(184,115,51,0.3); }
.vip-tier--2 { background: linear-gradient(135deg, rgba(169,169,169,0.12), var(--card)); border-color: rgba(169,169,169,0.3); }
.vip-tier--3 { background: linear-gradient(135deg, rgba(255,215,0,0.12), var(--card)); border-color: rgba(255,215,0,0.3); }
.vip-tier--4 { background: linear-gradient(135deg, rgba(229,228,226,0.12), var(--card)); border-color: rgba(229,228,226,0.3); }
.vip-tier--5 { background: linear-gradient(135deg, rgba(185,242,255,0.1), var(--card)); border-color: rgba(185,242,255,0.3); }
.vip-tier--6 { background: linear-gradient(135deg, rgba(193,6,38,0.2), rgba(255,203,58,0.12)); border-color: var(--border-gold); }
.vip-tier--6 .vip-tier__name { color: var(--accent); }
.vip-perks {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 40px;
}
.vip-perk {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.vip-perk__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.vip-perk__title { font-size: 0.9rem; font-weight: 800; margin-bottom: 4px; }
.vip-perk__desc  { font-size: 0.82rem; color: var(--muted2); }

/* ── CHARACTERISTICS ─────────────────────────────────────── */
.chars-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
.chars-table {
  background: var(--card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
}
.chars-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border); }
.chars-row:last-child { border-bottom: none; }
.chars-label, .chars-value { padding: 13px 18px; font-size: 0.88rem; }
.chars-label { color: var(--muted); border-right: 1px solid var(--border); }
.chars-value { font-weight: 700; }
.chars-row:nth-child(even) { background: rgba(255,255,255,0.02); }

.pros-cons { display: flex; flex-direction: column; gap: 20px; }
.pros, .cons {
  background: var(--card); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border);
}
.pros h3, .cons h3 { font-size: 1rem; font-weight: 800; margin-bottom: 14px; }
.pros h3 { color: #4caf50; }
.cons h3 { color: var(--red2); }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pros ul li, .cons ul li { font-size: 0.86rem; color: var(--muted2); padding-left: 22px; position: relative; }
.pros ul li::before { content: '✓'; position: absolute; left: 0; color: #4caf50; font-weight: 800; }
.cons ul li::before { content: '✗'; position: absolute; left: 0; color: var(--red2); font-weight: 800; }

/* ── STEPS ───────────────────────────────────────────────── */
.steps-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.steps-layout--rev { direction: rtl; }
.steps-layout--rev > * { direction: ltr; }
.steps-content { display: flex; flex-direction: column; gap: 22px; }
.step { display: flex; gap: 16px; }
.step__num {
  flex-shrink: 0; width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #fff; box-shadow: 0 4px 12px rgba(193,6,38,0.4);
}
.step__body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 5px; }
.step__body p  { font-size: 0.87rem; color: var(--muted2); }
.steps-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.steps-img__caption { text-align: center; font-size: 0.76rem; color: var(--muted); margin-top: 10px; }
.info-box {
  background: rgba(255,203,58,0.07); border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.87rem; color: var(--muted2);
}

/* ── PAYMENTS ────────────────────────────────────────────── */
.payments-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.payment-block {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px;
}
.payment-block h3 { font-size: 1rem; font-weight: 800; margin-bottom: 18px; color: var(--accent); }
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-method {
  display: flex; align-items: center; gap: 14px; padding: 11px 14px;
  background: var(--bg); border-radius: var(--radius-xs); border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.payment-method:hover { border-color: var(--border-gold); }
.payment-method__logo { width: 50px; height: 30px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.payment-method__name { font-size: 0.9rem; font-weight: 700; flex: 1; }
.payment-method__info { font-size: 0.76rem; color: var(--muted); text-align: right; }

/* ── DEPOSIT TABLE ───────────────────────────────────────── */
.deposit-table {
  background: var(--card); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border);
}
.deposit-row {
  display: flex; justify-content: space-between; padding: 11px 16px;
  border-bottom: 1px solid var(--border); font-size: 0.88rem;
}
.deposit-row:last-child { border-bottom: none; }
.deposit-row span:last-child { color: var(--accent); font-weight: 700; }
.deposit-row:nth-child(even) { background: rgba(255,255,255,0.02); }

/* ── ABOUT / TEXT ────────────────────────────────────────── */
.about-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 52px; align-items: start;
}
.about-text h2 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); font-weight: 900; margin-bottom: 18px; line-height: 1.25; }
.about-text h3 { font-size: 1.1rem; font-weight: 800; margin: 22px 0 10px; color: var(--accent); }
.about-text p  { font-size: 0.93rem; color: var(--muted2); margin-bottom: 14px; line-height: 1.7; }
.about-text strong { color: var(--text); }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.highlight-card {
  background: var(--card); border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 20px; text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--glow-gold); }
.highlight-card__num { font-size: 1.9rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 5px; }
.highlight-card__label { font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ── PROVIDERS ───────────────────────────────────────────── */
.provider-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.provider-tag {
  padding: 7px 16px; background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-xs); font-size: 0.83rem; color: var(--muted2);
  transition: all 0.2s;
}
.provider-tag:hover { border-color: var(--border-gold); color: var(--text); }

/* ── GAMES CATEGORIES DETAIL ─────────────────────────────── */
.game-cats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.game-cat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 20px; display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.2s;
}
.game-cat-card:hover { border-color: var(--border-gold); }
.game-cat-card__icon { font-size: 1.8rem; line-height: 1; }
.game-cat-card__title { font-size: 1rem; font-weight: 800; margin-bottom: 2px; }
.game-cat-card__count { font-size: 0.82rem; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.game-cat-card__desc  { font-size: 0.82rem; color: var(--muted2); }

/* ── SAFETY & LICENSE ────────────────────────────────────── */
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.safety-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 22px 18px; text-align: center; transition: border-color 0.2s, transform 0.2s;
}
.safety-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.safety-card__icon { font-size: 2rem; margin-bottom: 12px; }
.safety-card__title { font-size: 0.9rem; font-weight: 800; margin-bottom: 6px; }
.safety-card__desc  { font-size: 0.8rem; color: var(--muted2); }

/* ── TOURNAMENTS ─────────────────────────────────────────── */
.tournaments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tournament-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.tournament-card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,203,58,0.1), transparent 70%);
}
.tournament-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.tournament-card__prize {
  font-size: 1.5rem; font-weight: 900; color: var(--accent); margin-bottom: 6px;
}
.tournament-card__name { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.tournament-card p { font-size: 0.85rem; color: var(--muted2); }

/* ── BONUS DETAIL TABLE ──────────────────────────────────── */
.bonus-detail-table {
  background: var(--card); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border);
}
.bonus-detail-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.bonus-detail-row:last-child { border-bottom: none; }
.bonus-detail-row span { padding: 11px 16px; font-size: 0.87rem; }
.bonus-detail-row span:not(:last-child) { border-right: 1px solid var(--border); }
.bonus-detail-row.hdr { background: rgba(193,6,38,0.12); }
.bonus-detail-row.hdr span { font-weight: 800; color: var(--accent); }
.bonus-detail-row:nth-child(even):not(.hdr) { background: rgba(255,255,255,0.02); }

.bonus-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.btag {
  padding: 5px 12px; background: rgba(255,203,58,0.08);
  border: 1px solid var(--border-gold); border-radius: 20px;
  font-size: 0.76rem; color: var(--accent); font-weight: 700;
}

/* ── MOBILE ──────────────────────────────────────────────── */
.mobile-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.mobile-content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; margin-bottom: 16px; }
.mobile-content p  { font-size: 0.93rem; color: var(--muted2); margin-bottom: 12px; }
.mobile-features   { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.mobile-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--muted2);
}
.mobile-feature::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ── SUPPORT ─────────────────────────────────────────────── */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: border-color 0.2s;
}
.support-card:hover { border-color: var(--border-gold); }
.support-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.support-card__title { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.support-card__desc  { font-size: 0.86rem; color: var(--muted2); margin-bottom: 16px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-gold); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 17px 22px; background: none; border: none; color: var(--text);
  font-size: 0.94rem; font-weight: 700; text-align: left; cursor: pointer; transition: color 0.2s;
}
.faq-btn:hover, .faq-item.open .faq-btn { color: var(--accent); }
.faq-arrow { font-size: 0.72rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-body { display: none; padding: 0 22px 18px; }
.faq-body p { font-size: 0.9rem; color: var(--muted2); line-height: 1.7; }
.faq-body strong { color: var(--text); }

/* ── RESPONSIBLE ─────────────────────────────────────────── */
.responsible-box {
  background: var(--card3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 40px;
  display: flex; gap: 32px; align-items: flex-start;
}
.responsible-icon { font-size: 3rem; flex-shrink: 0; line-height: 1; }
.responsible-content h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 10px; }
.responsible-content p { font-size: 0.88rem; color: var(--muted2); margin-bottom: 10px; }
.responsible-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.responsible-links a {
  padding: 6px 14px; background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.8rem; color: var(--muted2); transition: all 0.2s;
}
.responsible-links a:hover { color: var(--accent); border-color: var(--border-gold); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--bg3); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer__logo { margin-bottom: 14px; display: block; }
.footer__desc { font-size: 0.86rem; color: var(--muted); margin-bottom: 16px; max-width: 280px; line-height: 1.6; }
.footer__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge { padding: 4px 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 6px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; }
.footer__col-title { font-size: 0.82rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent); margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 0.86rem; color: var(--muted); transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 14px;
}
.footer__copy { font-size: 0.8rem; color: var(--muted); }
.footer__legal { font-size: 0.76rem; color: var(--muted); max-width: 600px; text-align: right; line-height: 1.55; }

/* ── BANNER PROMO ────────────────────────────────────────── */
.promo-banner {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vip-tiers { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .overview-box { flex-wrap: wrap; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
}
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .nav, .header__actions { display: none; }
  .burger { display: flex; }
  .hero .container { flex-direction: column; gap: 36px; }
  .hero__visual { flex: none; max-width: 100%; width: 100%; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .vip-tiers { grid-template-columns: repeat(2, 1fr); }
  .vip-perks { grid-template-columns: 1fr; }
  .chars-layout { grid-template-columns: 1fr; }
  .steps-layout, .steps-layout--rev { grid-template-columns: 1fr; direction: ltr; }
  .payments-layout { grid-template-columns: 1fr; }
  .two-col-layout { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .mobile-layout { grid-template-columns: 1fr; }
  .tournaments-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .game-cats-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__legal { text-align: left; }
  .footer__bottom { flex-direction: column; }
  .responsible-box { flex-direction: column; }
  .overview-stats { gap: 16px; }
  .section { padding: 52px 0; }
  .hero { padding: 44px 0 56px; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr 1fr; }
  .chars-row { grid-template-columns: 1fr; }
  .chars-label { border-right: none; border-bottom: 1px solid var(--border); }
  .hero__offer { flex-direction: column; }
  .vip-tiers { grid-template-columns: repeat(3, 1fr); }
}
