/* ========================================
   HEYROLLER CASINO UK — style.css
   Brand palette: deep purple #2b0a47
   ======================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Orbitron:wght@700;900&display=swap');

/* === TOKENS === */
:root {
  --brand:      #2b0a47;
  --brand-dark: #1a0530;
  --brand-mid:  #3d1260;
  --brand-lite: #52197d;
  --bg-deep:    #130520;
  --bg-card:    #1e0a35;
  --bg-card2:   #260d3f;
  --border:     #3d1a5e;
  --gold:       #e8a820;
  --gold-light: #ffd166;
  --violet:     #c084fc;
  --violet2:    #a855f7;
  --teal:       #34d399;
  --text-main:  #ede9f5;
  --text-muted: #9b85b8;
  --text-light: #ffffff;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 32px rgba(0,0,0,0.65);
  --glow-gold:  0 0 18px rgba(232,168,32,0.38);
  --glow-purple:0 0 22px rgba(168,85,247,0.4);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
img { display: block; max-width: 100%; }
table { border-collapse: collapse; width: 100%; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.accent { color: var(--gold); }
.red-accent { color: var(--violet); }

/* === LAYOUT === */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 70px 0; }
.section-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 48px;
}

/* === DIVIDER === */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 auto;
}

/* === TOP PROMO BANNER === */
.top-promo {
  background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-dark) 100%);
  border-bottom: 2px solid var(--violet2);
  padding: 14px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
}
.top-promo__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-promo__text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.04em;
}
.top-promo__text strong {
  color: var(--gold);
  font-size: 1.15rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #c8860e 100%);
  color: #130520;
  padding: 13px 30px;
  font-size: 0.95rem;
  box-shadow: var(--glow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #130520;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(232,168,32,0.6);
}
.btn-gold-sm {
  padding: 9px 22px;
  font-size: 0.85rem;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 11px 28px;
  font-size: 0.9rem;
}
.btn-outline:hover {
  background: var(--gold);
  color: #130520;
}
.btn-red {
  background: linear-gradient(135deg, var(--brand-lite) 0%, var(--violet2) 100%);
  color: #fff;
  padding: 13px 30px;
  font-size: 0.95rem;
  box-shadow: var(--glow-purple);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(168,85,247,0.65);
  background: linear-gradient(135deg, var(--violet2) 0%, var(--brand-lite) 100%);
  color: #fff;
}

/* === HEADER / NAV === */
.site-header {
  background: rgba(19,5,32,0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon { width: 48px; height: 48px; flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text__main {
  font-family: 'Orbitron', monospace;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.logo-text__sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover {
  color: var(--gold);
  background: rgba(232,168,32,0.08);
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 10px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
}

/* === HERO === */
.hero {
  padding: 80px 0 70px;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%, rgba(168,85,247,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(232,168,32,0.1) 0%, transparent 55%),
    var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.018) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.018) 60px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,168,32,0.1);
  border: 1px solid rgba(232,168,32,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--gold);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat__num {
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet2), var(--gold));
}
.hv-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hv-bonus {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(43,10,71,0.6) 0%, rgba(168,85,247,0.12) 100%);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.hv-bonus__amount {
  font-family: 'Orbitron', monospace;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: var(--glow-gold);
}
.hv-bonus__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.hv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.hv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hv-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.35);
  color: var(--teal);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* === INFO CARDS === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--bg-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;
}
.info-card:hover {
  border-color: rgba(168,85,247,0.45);
  transform: translateY(-3px);
}
.info-card__icon { width: 44px; height: 44px; margin-bottom: 14px; }
.info-card__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.info-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* === RATING SECTION === */
.rating-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.rating-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rating-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--violet2));
}
.rating-score {
  font-family: 'Orbitron', monospace;
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: var(--glow-gold);
}
.rating-max { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 12px; }
.rating-stars {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 14px;
}
.star { width: 22px; height: 22px; display: inline-block; }
.rating-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rating-bars { display: flex; flex-direction: column; gap: 16px; }
.rbar {
  display: grid;
  grid-template-columns: 150px 1fr 40px;
  align-items: center;
  gap: 14px;
}
.rbar__label { font-size: 0.88rem; color: var(--text-muted); }
.rbar__track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.rbar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--violet2), var(--gold));
  border-radius: 3px;
}
.rbar__val {
  font-family: 'Orbitron', monospace;
  font-size: 0.78rem;
  color: var(--gold);
  text-align: right;
}

/* === BONUS BANNER STRIP === */
.bonus-strip {
  background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-dark) 100%);
  border-top: 1px solid rgba(168,85,247,0.35);
  border-bottom: 1px solid rgba(168,85,247,0.35);
  padding: 28px 20px;
  text-align: center;
}
.bonus-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.bonus-strip__badge {
  background: rgba(232,168,32,0.1);
  border: 1px solid rgba(232,168,32,0.3);
  border-radius: 6px;
  padding: 4px 14px;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bonus-strip__text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
}
.bonus-strip__text strong { color: var(--gold); }

/* === GAMES SECTION === */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px 22px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.game-card:hover {
  border-color: rgba(168,85,247,0.5);
  transform: translateY(-4px);
}
.game-card__icon { width: 60px; height: 60px; margin: 0 auto 14px; }
.game-card__name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.game-card__count {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: 'Orbitron', monospace;
}

/* === TWO COLUMN === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.two-col--wide { grid-template-columns: 1.4fr 1fr; }

/* === PAYMENT TABLE === */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.data-table { width: 100%; min-width: 560px; border-collapse: collapse; }
.data-table thead tr {
  background: var(--bg-card2);
  border-bottom: 2px solid var(--border);
}
.data-table th {
  padding: 14px 18px;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.data-table td {
  padding: 13px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: rgba(168,85,247,0.04); }
.data-table .tag {
  display: inline-block;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.3);
  color: var(--teal);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.76rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

/* === PROS / CONS === */
.procon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.procon-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.procon-box--pros { border-top: 3px solid var(--teal); }
.procon-box--cons { border-top: 3px solid var(--violet2); }
.procon-box__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.procon-box--pros .procon-box__title { color: var(--teal); }
.procon-box--cons .procon-box__title { color: var(--violet); }
.procon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.procon-list li:last-child { border-bottom: none; }
.procon-list li::before { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.procon-box--pros .procon-list li::before { content: '✓'; color: var(--teal); }
.procon-box--cons .procon-list li::before { content: '✗'; color: var(--violet); }

/* === REVIEW TEXT === */
.review-body { max-width: 820px; }
.review-body h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--violet);
}
.review-body h3:first-child { margin-top: 0; }
.review-body p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

/* === SUPPORT CARDS === */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.support-card__method {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.06em;
}
.support-card__icon { margin-bottom: 4px; }
.support-card__detail { font-size: 0.83rem; color: var(--text-muted); }
.support-card__avail {
  font-size: 0.78rem;
  color: var(--teal);
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.06em;
}

/* === FAQ === */
.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(168,85,247,0.5); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}
.faq-q__text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.faq-q__arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q__arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 18px;
}
.faq-a p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* === RESPONSIBLE GAMING === */
.rg-block {
  background: var(--bg-card);
  border: 1px solid rgba(168,85,247,0.3);
  border-left: 4px solid var(--violet2);
  border-radius: var(--radius);
  padding: 28px 28px;
  max-width: 820px;
}
.rg-block__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--violet);
  margin-bottom: 10px;
}
.rg-block p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* === FOOTER === */
.site-footer {
  background: var(--brand-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
}
.footer-col__title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }
.license-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.lic-badge {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === SECTION BG VARIANTS === */
.bg-card-section { background: var(--bg-card); }
.bg-card2-section { background: var(--bg-card2); }

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; }
  .rating-wrap { grid-template-columns: 1fr; }
  .two-col,
  .two-col--wide { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .procon-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 50px 0; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: rgba(19,5,32,0.99); border-bottom: 1px solid var(--border); padding: 16px 20px; z-index: 998; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .hero { padding: 50px 0; }
  .rbar { grid-template-columns: 110px 1fr 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-stats { gap: 18px; }
  .hero-cta { flex-direction: column; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .bonus-strip__inner { flex-direction: column; gap: 14px; }
  .top-promo__inner { flex-direction: column; gap: 8px; }
  .btn-gold, .btn-red { width: 100%; text-align: center; }
}
