:root {
  --burgundy-deep: #4a0015;
  --burgundy: #700020;
  --burgundy-mid: #8b0028;
  --burgundy-light: #a80030;
  --gold: #D4AF37;
  --gold-light: #f0d060;
  --gold-dark: #b8961f;
  --navy: #0d1b2a;
  --navy-mid: #162235;
  --cream: #faf8f2;
  --cream-dark: #f2ede0;
  --text-dark: #1a1007;
  --text-mid: #3d2b10;
  --text-light: #6b5840;
  --text-muted: #9a8878;
  --white: #ffffff;
  --border: #e0d5c0;
  --border-dark: #c8b89a;
  --shadow: 0 4px 20px rgba(74, 0, 21, 0.12);
  --shadow-lg: 0 8px 40px rgba(74, 0, 21, 0.18);
  --radius: 8px;
  --radius-lg: 14px;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--burgundy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

img { max-width: 100%; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--burgundy-deep);
  border-color: var(--gold-dark);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
  color: var(--burgundy-deep);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--burgundy-deep);
}

.btn--sm { padding: 0.45rem 1.1rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.1rem; }

.top-banner {
  background: linear-gradient(90deg, var(--burgundy-deep) 0%, var(--burgundy-mid) 50%, var(--burgundy-deep) 100%);
  border-bottom: 2px solid var(--gold);
  cursor: pointer;
  padding: 10px 24px;
}
.top-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.top-banner__text {
  color: var(--white);
  font-size: 0.9rem;
  text-align: center;
}
.top-banner__text strong { color: var(--gold-light); }

.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.logo { display: block; flex-shrink: 0; }
.logo__svg { height: 44px; width: auto; display: block; }

.site-nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  transition: all .2s;
  letter-spacing: 0.02em;
}
.site-nav a:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.nav-cta { flex-shrink: 0; }

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy-deep) 45%, var(--burgundy) 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 620px;
}
.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}
.hero__stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  text-align: center;
  min-width: 90px;
}
.stat-pill__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--gold);
}
.stat-pill__label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__wins-block {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.wins-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.wins-list { display: flex; flex-direction: column; gap: 0.6rem; }
.win-item {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
}
.win-item--gold { background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.25); }
.win-item--silver { background: rgba(200,200,210,0.08); border: 1px solid rgba(200,200,210,0.15); }
.win-item--bronze { background: rgba(180,100,40,0.1); border: 1px solid rgba(180,100,40,0.2); }
.win-item__icon { font-size: 1rem; }
.win-item__user { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.win-item__game { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.win-item__amount { color: var(--gold); font-weight: 700; text-align: right; }

.section-about,
.section-games,
.section-bonuses,
.section-payments,
.section-mobile,
.section-security,
.section-support,
.section-reviews,
.section-compare,
.section-faq {
  padding: 72px 0;
}

.section-about { background: var(--white); }
.section-games { background: var(--navy); }
.section-games h2, .section-games h3, .section-games p { color: var(--white); }
.section-games .section-intro { color: rgba(255,255,255,0.75); }
.section-bonuses { background: var(--cream); }
.section-payments { background: var(--white); }
.section-mobile { background: var(--cream-dark); }
.section-security { background: var(--navy); }
.section-security h2, .section-security h3 { color: var(--white); }
.section-security p { color: rgba(255,255,255,0.78); }
.section-support { background: var(--white); }
.section-reviews { background: var(--cream); }
.section-compare { background: var(--white); }
.section-faq { background: var(--cream-dark); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 820px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.about-text h3 { color: var(--burgundy); margin-top: 1.5rem; }
.about-text p { color: var(--text-mid); }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--burgundy);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.info-card__icon { font-size: 1.6rem; margin-bottom: 0.5rem; display: block; }
.info-card h3 { font-size: 0.95rem; color: var(--burgundy); margin-bottom: 0.4rem; }
.info-card p { font-size: 0.85rem; color: var(--text-mid); }

.games-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.game-category-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.game-category-card__icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.game-category-card h3 { color: var(--gold) !important; margin-bottom: 0.75rem; }
.game-category-card p { color: rgba(255,255,255,0.72) !important; font-size: 0.9rem; margin-bottom: 1.25rem; }

.providers-strip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.providers-strip__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.provider-badge {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: rgba(255,255,255,0.8);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.games-table-wrap h3 { color: var(--gold) !important; margin-bottom: 1rem; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.9rem;
}
.data-table th {
  background: var(--burgundy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: middle;
}
.section-games .data-table td { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.08); }
.section-games .data-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.data-table tr:nth-child(even) td { background: var(--cream); }
.data-table tr:hover td { background: rgba(112,0,32,0.04); }

.comparison-table .highlight-col { background: rgba(112,0,32,0.06); }
.comparison-table th.highlight-col { background: var(--burgundy-mid); }
.data-table .check { color: #2a8a2a; font-weight: 700; }
.data-table .cross { color: #c0392b; }

.mid-banner {
  background: linear-gradient(90deg, var(--burgundy-deep), var(--burgundy-mid), var(--burgundy-deep));
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 20px 0;
}
.mid-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.mid-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mid-banner__text strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.mid-banner__text span { color: rgba(255,255,255,0.85); font-size: 1rem; }
.mid-banner__small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
}

.bonus-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.bonus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}
.bonus-card--featured {
  border-color: var(--gold);
  border-width: 2px;
  background: linear-gradient(160deg, var(--white) 60%, rgba(212,175,55,0.06) 100%);
}
.bonus-card__badge {
  display: inline-block;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.bonus-card--featured .bonus-card__badge { background: var(--gold); color: var(--burgundy-deep); }
.bonus-card h3 { color: var(--burgundy); margin-bottom: 0.5rem; }
.bonus-card__amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.bonus-card p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1.25rem; }

.bonus-terms-block {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.bonus-terms-block h3 { color: var(--burgundy); margin-bottom: 0.75rem; }
.bonus-terms-block p { color: var(--text-mid); margin-bottom: 1.25rem; }
.note-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(255,200,0,0.08);
  border-left: 3px solid var(--gold);
  padding: 0.6rem 1rem;
  border-radius: 0 4px 4px 0;
}

.payment-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.payment-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--burgundy);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.payment-card__icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.payment-card h3 { font-size: 1rem; color: var(--burgundy); margin-bottom: 0.5rem; }
.payment-card p { font-size: 0.85rem; color: var(--text-mid); }

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}
.mobile-text h3 { color: var(--burgundy); margin-top: 1.5rem; }
.mobile-text p { color: var(--text-mid); }

.mobile-features { display: flex; flex-direction: column; gap: 1rem; }
.feature-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
}
.feature-check {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 1.1rem;
  margin-top: 2px;
}
.feature-row strong { display: block; color: var(--text-dark); font-size: 0.9rem; }
.feature-row p { font-size: 0.8rem; color: var(--text-muted); margin: 0.2rem 0 0; }

.security-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.security-text h3 { color: var(--gold); margin-top: 1.75rem; }
.security-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.security-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 1.1rem;
  text-align: center;
}
.security-badge__icon { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.security-badge strong { display: block; color: var(--gold); font-size: 0.9rem; margin-bottom: 0.4rem; }
.security-badge p { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.support-channel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--burgundy);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.support-channel__icon { font-size: 1.8rem; display: block; margin-bottom: 0.6rem; }
.support-channel h3 { color: var(--burgundy); margin-bottom: 0.5rem; font-size: 1rem; }
.support-channel p { font-size: 0.85rem; color: var(--text-mid); }
.support-note {
  background: linear-gradient(90deg, rgba(112,0,32,0.06), transparent);
  border-left: 4px solid var(--burgundy);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-mid);
  font-size: 0.9rem;
}
.support-note strong { color: var(--burgundy); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review-card__stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-card p { font-size: 0.875rem; color: var(--text-mid); font-style: italic; margin-bottom: 0.75rem; }
.review-card__author { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  gap: 1rem;
  transition: background .2s, color .2s;
}
.faq-question:hover { background: rgba(112,0,32,0.04); color: var(--burgundy); }
.faq-item--open .faq-question { background: var(--burgundy); color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--burgundy);
  transition: transform .2s;
  line-height: 1;
}
.faq-item--open .faq-icon { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.5rem;
  background: var(--cream);
}
.faq-item--open .faq-answer {
  max-height: 600px;
  padding: 1.25rem 1.5rem;
}
.faq-answer p { color: var(--text-mid); font-size: 0.9rem; }

.section-responsible { background: var(--burgundy-deep); padding: 48px 0; }
.responsible-block { text-align: center; }
.responsible-block h2 { color: var(--gold); margin-bottom: 1rem; }
.responsible-block p { color: rgba(255,255,255,0.75); max-width: 720px; margin: 0 auto 1.5rem; }
.rg-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.rg-link {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold-light);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}
.rg-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 0 auto; }

.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 48px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo svg { height: 42px; width: auto; display: block; margin-bottom: 0.75rem; }
.footer-logo p { color: rgba(255,255,255,0.45); font-size: 0.8rem; line-height: 1.5; }
.footer-nav h4, .footer-info h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav li a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color .2s; }
.footer-nav li a:hover { color: var(--gold); }
.footer-info p { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-badge {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.6;
}
.footer-bottom a { color: rgba(212,175,55,0.5); }
.footer-bottom a:hover { color: var(--gold); }

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

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 2rem; }
  .hero__wins-block { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .mobile-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .security-badges { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; }
  .games-tabs { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header .container { height: 60px; }
  .site-nav { display: none; }
  .hero { padding: 40px 0 36px; }
  .section-about, .section-games, .section-bonuses, .section-payments,
  .section-mobile, .section-security, .section-support, .section-reviews,
  .section-compare, .section-faq { padding: 48px 0; }
  .bonus-cards { grid-template-columns: 1fr; }
  .payment-cards { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .security-badges { grid-template-columns: 1fr 1fr; }
  .mid-banner__inner { justify-content: center; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .win-item { grid-template-columns: auto 1fr auto; }
  .win-item__game { display: none; }
}

@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  .hero__stats { gap: 0.6rem; }
  .stat-pill { min-width: 70px; padding: 0.4rem 0.75rem; }
  .payment-cards { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .btn--lg { padding: 0.85rem 1.5rem; font-size: 1rem; }
  .faq-question { font-size: 0.875rem; padding: 1rem 1.1rem; }
  .faq-answer { padding: 0 1.1rem; }
  .faq-item--open .faq-answer { padding: 1rem 1.1rem; }
  .hero__cta-group { flex-direction: column; align-items: flex-start; }
}
