/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #C8102E;
  --red-dark:   #9e0b23;
  --red-light:  #e8192e;
  --gold:       #FFD700;
  --gold-dark:  #c9a800;
  --gold-light: #fff3a0;
  --dark:       #0f0f0f;
  --dark-2:     #181818;
  --dark-3:     #222222;
  --mid:        #2d2d2d;
  --mid-2:      #3a3a3a;
  --light-bg:   #f7f7f8;
  --white:      #ffffff;
  --text:       #e8e8e8;
  --text-muted: #999999;
  --border:     #333333;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
  --transition: 0.22s ease;
  --font-main:  'Segoe UI', Arial, sans-serif;
  --font-heading: 'Arial Black', 'Impact', 'Segoe UI Black', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-main); }
img { max-width: 100%; display: block; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e6c000 100%);
  color: #111;
  box-shadow: 0 4px 16px rgba(255,215,0,0.3);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #ffe033 0%, var(--gold) 100%);
  box-shadow: 0 6px 24px rgba(255,215,0,0.5);
  transform: translateY(-2px);
}

.btn--red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(200,16,46,0.35);
}
.btn--red:hover {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: rgba(255,215,0,0.1);
  transform: translateY(-2px);
}

.btn--sm { padding: 8px 18px; font-size: 13px; }
.btn--lg { padding: 16px 38px; font-size: 17px; }
.btn--full { width: 100%; }

/* ===== TOP BONUS BANNER ===== */
.bonus-banner-top {
  background: linear-gradient(90deg, #8b0015 0%, var(--red) 40%, #c8102e 60%, #8b0015 100%);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 200;
}
.bonus-banner-top__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 20px;
  flex-wrap: wrap;
  text-align: center;
}
.bonus-banner-top__icon { font-size: 20px; }
.bonus-banner-top__text { font-size: 14px; color: var(--white); }
.bonus-banner-top__text strong { color: var(--gold); }

/* ===== HEADER ===== */
.site-header {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 45px;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { display: flex; align-items: center; }
.logo__svg { height: 44px; width: auto; }

.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.site-nav__link {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.site-nav__link:hover {
  color: var(--gold);
  background: rgba(255,215,0,0.08);
}

.site-header__cta { margin-left: 16px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0408 50%, #0f0f0f 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,16,46,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: center;
  position: relative;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.hero__title::after {
  content: ' Casino';
  color: var(--gold);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero__lead {
  font-size: 16px;
  color: #ccc;
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}
.badge__icon { font-size: 15px; }

/* CASINO CARD */
.hero__casino-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow), 0 0 40px rgba(200,16,46,0.1);
}
.casino-card__header { margin-bottom: 16px; }
.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.stars-large { color: var(--gold); font-size: 26px; letter-spacing: 3px; }
.casino-card__rating span { font-size: 13px; color: #bbb; }

.casino-card__facts { margin-bottom: 22px; }
.casino-card__facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.casino-card__facts li:last-child { border-bottom: none; }
.fact-label { color: var(--text-muted); }
.fact-val { font-weight: 700; color: var(--white); }

/* ===== TICKER ===== */
.ticker-section {
  background: var(--red);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  padding: 10px 0;
}
.ticker-wrapper { overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-block;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== QUICK LINKS ===== */
.quick-links {
  background: var(--dark-2);
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.quick-links__grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 22px;
  min-width: 100px;
  transition: all var(--transition);
  color: var(--text);
}
.quick-link-card:hover {
  border-color: var(--gold);
  background: rgba(255,215,0,0.06);
  transform: translateY(-3px);
}
.quick-link-card__icon { font-size: 22px; }
.quick-link-card__label { font-size: 13px; font-weight: 600; }

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section--dark { background: var(--dark-2); }
.section--light { background: #191919; }

.section-header { margin-bottom: 30px; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
}
.section-intro {
  font-size: 16px;
  color: #bbb;
  line-height: 1.75;
  max-width: 820px;
  margin-bottom: 36px;
}
.section-cta { text-align: center; margin-top: 36px; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.game-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}
.game-card__thumb {
  height: 130px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
}
.game-card__thumb--1  { background: linear-gradient(135deg, #1a0e00, #4a2c00); }
.game-card__thumb--2  { background: linear-gradient(135deg, #0a1a0a, #1a4a1a); }
.game-card__thumb--3  { background: linear-gradient(135deg, #0e0e2a, #1a1a5e); }
.game-card__thumb--4  { background: linear-gradient(135deg, #2a0a1a, #8a1a4a); }
.game-card__thumb--5  { background: linear-gradient(135deg, #0a1a2a, #1a4a7a); }
.game-card__thumb--6  { background: linear-gradient(135deg, #1a1a0a, #5e5e0a); }
.game-card__thumb--7  { background: linear-gradient(135deg, #0a0a1a, #3a0a5e); }
.game-card__thumb--8  { background: linear-gradient(135deg, #0a1a0a, #1a3a1a); }
.game-card__thumb--c1 { background: linear-gradient(135deg, #001a2a, #004a7a); }
.game-card__thumb--c2 { background: linear-gradient(135deg, #1a0a00, #5a2a00); }
.game-card__thumb--c3 { background: linear-gradient(135deg, #0a0020, #300080); }
.game-card__thumb--c4 { background: linear-gradient(135deg, #001a10, #005a30); }

.game-card__label {
  background: rgba(200,16,46,0.85);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.game-card__info {
  padding: 12px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.game-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.game-card__provider {
  font-size: 12px;
  color: var(--text-muted);
}
.game-card .btn { margin: 0 14px 14px; }

/* ===== LIVE CASINO GRID ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.live-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.live-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.live-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.live-card__visual {
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 36px;
}
.live-card__visual--roulette { background: linear-gradient(135deg, #1a0010, #600040); }
.live-card__visual--blackjack { background: linear-gradient(135deg, #001a10, #00602a); }
.live-card__visual--baccarat  { background: linear-gradient(135deg, #0a0a1a, #1a1a60); }
.live-card__visual--gameshow  { background: linear-gradient(135deg, #1a0a00, #603000); }
.live-card__visual--pragmatic { background: linear-gradient(135deg, #1a0000, #5a0000); }
.live-card__visual--poker     { background: linear-gradient(135deg, #001010, #005050); }

.live-card__game-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.live-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== PROVIDERS ===== */
.providers-section {
  background: var(--dark);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.providers-title {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.provider-badge {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.provider-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== BONUS CARDS ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}
.bonus-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all var(--transition);
}
.bonus-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.bonus-card--welcome {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1e1600, var(--dark-3));
  box-shadow: 0 0 30px rgba(255,215,0,0.08);
}
.bonus-card__tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.bonus-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.bonus-card__amount {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.bonus-card__spins {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 16px;
}
.bonus-card__terms {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bonus-card__terms li {
  font-size: 13px;
  color: #aaa;
  padding-left: 16px;
  position: relative;
}
.bonus-card__terms li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

/* ===== PROMO BAR ===== */
.bonus-promo-bar {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 30px;
}
.bonus-promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-promo-bar__text {
  font-size: 14px;
  color: var(--white);
  flex: 1;
}
.bonus-promo-bar__text strong { color: var(--gold); }

/* ===== REVIEW ===== */
.review-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.review-block h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
}
.review-block p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 14px;
}
.review-block p:last-child { margin-bottom: 0; }

/* ===== SCORES ===== */
.scores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.score-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.score-card__value {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.score-card__label {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 14px;
}
.score-card__bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.score-card__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 3px;
  transition: width 1s ease;
}
.overall-score {
  text-align: center;
  padding: 30px;
  background: var(--dark-3);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  max-width: 400px;
  margin: 0 auto;
}
.overall-score__number {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 6px;
}
.overall-score__label {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 10px;
}

/* ===== PAYMENTS TABLE ===== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}
.payments-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.payments-table thead tr {
  background: var(--red);
}
.payments-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.payments-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.payments-table tbody tr:last-child { border-bottom: none; }
.payments-table tbody tr:hover { background: rgba(255,215,0,0.04); }
.payments-table td {
  padding: 13px 16px;
  color: #ccc;
}
.payments-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.table-note {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
}

/* ===== PROS & CONS ===== */
.pros-cons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-box, .cons-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.pros-box { border-top: 4px solid #22c55e; }
.cons-box { border-top: 4px solid var(--red); }
.pros-box__title, .cons-box__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.pros-list li, .cons-list li {
  font-size: 14px;
  color: #ccc;
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 900;
}
.cons-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.step-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.step-card__num {
  font-size: 38px;
  font-weight: 900;
  color: var(--red);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.85;
}
.step-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 900px;
}
.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item--open { border-color: var(--gold); }

.faq-q {
  width: 100%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  width: 22px;
  text-align: center;
  line-height: 1;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
}
.faq-a p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 18px;
}
.faq-item--open .faq-a {
  max-height: 500px;
  padding: 0 22px 20px;
}

/* ===== ABOUT ===== */
.about-text p {
  font-size: 15px;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 800px;
}
.about-text strong { color: var(--white); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-2);
  border-top: 2px solid var(--border);
  padding: 50px 0 28px;
}
.site-footer__inner { display: flex; flex-direction: column; gap: 36px; }
.footer-logo { margin-bottom: 8px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}
.footer-col__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
}
.footer-col__list li {
  font-size: 13px;
  color: #999;
  padding: 5px 0;
}
.footer-col__list a { color: #999; }
.footer-col__list a:hover { color: var(--gold); }
.footer-col__list--info li {
  display: flex;
  gap: 8px;
}
.footer-col__list--info li span:first-child {
  color: var(--text-muted);
  min-width: 72px;
}
.footer-col__list--info li span:last-child {
  color: #ccc;
  font-weight: 600;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  margin-top: 16px;
}
.footer-disclaimer {
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.footer-disclaimer p {
  font-size: 12px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual { display: none; }
  .pros-cons__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-header__cta { display: none; }
  .burger { display: flex; }

  .hero { padding: 40px 0; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .bonus-banner-top__inner { gap: 8px; }
  .bonus-banner-top__text { font-size: 12px; }

  .quick-links__grid { gap: 8px; }
  .quick-link-card { padding: 10px 14px; min-width: 80px; }

  .games-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .live-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .bonus-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .scores-grid { grid-template-columns: repeat(2, 1fr); }

  .bonus-promo-bar__inner { flex-direction: column; text-align: center; }
  .bonus-promo-bar__inner .btn { width: 100%; }

  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 46px 0; }

  .payments-table { font-size: 13px; }
  .payments-table th, .payments-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .hero__badges { gap: 8px; }
  .badge { padding: 5px 10px; font-size: 12px; }
  .scores-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .quick-links__grid { gap: 6px; }
  .quick-link-card { min-width: 70px; padding: 8px 10px; }
  .quick-link-card__label { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  * { transition: none !important; }
}
