/* =============================================
   LUCK CASINO UK — STYLESHEET
   Brand palette: deep navy + gold + emerald
   ============================================= */

:root {
  --clr-bg:        #0a0e1a;
  --clr-surface:   #111827;
  --clr-surface2:  #1a2235;
  --clr-border:    #1e2d45;
  --clr-gold:      #c9a227;
  --clr-gold-lt:   #e8c84a;
  --clr-emerald:   #1db87e;
  --clr-emerald-dk:#16956a;
  --clr-white:     #f0f4ff;
  --clr-muted:     #8a9bb8;
  --clr-accent:    #7c3aed;
  --clr-red:       #e53e3e;

  --font-display:  'Georgia', 'Times New Roman', serif;
  --font-body:     'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:     'Courier New', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 24px rgba(0,0,0,.45);
  --shadow-glow: 0 0 24px rgba(201,162,39,.18);
  --transition:  .22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--clr-bg);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-lt); }

img { display: none !important; }

/* =============================================
   UTILITY
   ============================================= */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--dark { background: var(--clr-surface); }
.section--darker { background: var(--clr-surface2); }

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(201,162,39,.12);
  color: var(--clr-gold);
  margin-bottom: 12px;
}

.text-gold { color: var(--clr-gold); }
.text-emerald { color: var(--clr-emerald); }
.text-muted { color: var(--clr-muted); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: 20px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; margin-bottom: 12px; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 16px; color: var(--clr-muted); }
p:last-child { margin-bottom: 0; }
p strong { color: var(--clr-white); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold) 0%, #a8801c 100%);
  color: #0a0e1a;
  box-shadow: 0 4px 20px rgba(201,162,39,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--clr-gold-lt) 0%, var(--clr-gold) 100%);
  color: #0a0e1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,.5);
}

.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
}
.btn-outline:hover {
  background: var(--clr-gold);
  color: #0a0e1a;
}

.btn-emerald {
  background: linear-gradient(135deg, var(--clr-emerald) 0%, var(--clr-emerald-dk) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(29,184,126,.3);
}
.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,184,126,.45);
}

.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* =============================================
   TOP BONUS BANNER (strip at very top)
   ============================================= */
.top-banner {
  background: linear-gradient(90deg, #0d1a10 0%, #0a1f15 40%, #0d2210 100%);
  border-bottom: 2px solid var(--clr-emerald);
  padding: 12px 20px;
  text-align: center;
  position: relative;
  z-index: 100;
}
.top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.top-banner__icon { font-size: 1.4rem; }
.top-banner__text {
  font-size: .92rem;
  color: var(--clr-white);
  font-weight: 600;
}
.top-banner__text span { color: var(--clr-gold-lt); }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  background: rgba(10,14,26,.96);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1140px;
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: .04em;
}
.logo__sub {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-emerald);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--clr-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: block;
  white-space: nowrap;
}
.nav a:hover { color: var(--clr-white); background: rgba(255,255,255,.05); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,162,39,.08) 0%, transparent 70%),
              linear-gradient(180deg, #0a0e1a 0%, #0d1525 100%);
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-emerald);
  margin-bottom: 20px;
}

.hero__title {
  margin-bottom: 24px;
  position: relative;
}
.hero__title em {
  font-style: normal;
  color: var(--clr-gold);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--clr-muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--clr-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--clr-border);
  border-radius: 99px;
  padding: 7px 16px;
}
.badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-emerald);
  flex-shrink: 0;
}

/* =============================================
   FEATURE TILES (4 in a row)
   ============================================= */
.features-strip {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 36px 0;
}
.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.feature-tile {
  background: var(--clr-surface);
  padding: 28px 22px;
  text-align: center;
}
.feature-tile__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.feature-tile__title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.feature-tile__desc {
  font-size: .8rem;
  color: var(--clr-muted);
  margin: 0;
}

/* =============================================
   GAME TICKER
   ============================================= */
.game-ticker {
  background: var(--clr-surface2);
  padding: 16px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--clr-border);
}
.game-ticker__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 20px;
}
.game-ticker__track::-webkit-scrollbar { display: none; }
.game-chip {
  flex-shrink: 0;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-muted);
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
}
.game-chip:hover { border-color: var(--clr-gold); color: var(--clr-gold); }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-head { margin-bottom: 44px; }
.section-head--center { text-align: center; }
.section-head p { max-width: 640px; }
.section-head--center p { margin-left: auto; margin-right: auto; }

/* =============================================
   ABOUT / OVERVIEW BLOCK
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.stat-box {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.stat-box__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-gold);
  display: block;
}
.stat-box__label {
  font-size: .75rem;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.about-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.about-list__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-list__content h4 { color: var(--clr-white); margin-bottom: 4px; }
.about-list__content p { font-size: .85rem; margin: 0; }

/* =============================================
   BONUS SECTION
   ============================================= */
.bonus-card {
  background: linear-gradient(135deg, #0d1f13 0%, #071510 100%);
  border: 2px solid var(--clr-emerald);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 0 60px rgba(29,184,126,.12);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '★';
  position: absolute;
  right: -20px; top: -30px;
  font-size: 14rem;
  color: rgba(201,162,39,.03);
  pointer-events: none;
  line-height: 1;
}
.bonus-card__badge {
  display: inline-block;
  background: var(--clr-emerald);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.bonus-card h2 { color: var(--clr-white); margin-bottom: 8px; }
.bonus-card p { color: var(--clr-muted); margin-bottom: 0; }
.bonus-card__right { text-align: center; }
.bonus-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.bonus-sub {
  font-size: .82rem;
  color: var(--clr-muted);
  display: block;
  margin-bottom: 20px;
}

/* =============================================
   MID BANNER STRIP
   ============================================= */
.mid-banner {
  background: linear-gradient(90deg, #0d1a10 0%, #0f2016 50%, #0d1a10 100%);
  border-top: 1px solid var(--clr-emerald);
  border-bottom: 1px solid var(--clr-emerald);
  padding: 22px 20px;
}
.mid-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
}
.mid-banner__text h3 { color: var(--clr-white); margin-bottom: 4px; }
.mid-banner__text p { color: var(--clr-muted); font-size: .88rem; margin: 0; }

/* =============================================
   GAMES GRID
   ============================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.game-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.game-card__name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.game-card__desc {
  font-size: .8rem;
  color: var(--clr-muted);
  margin: 0;
  line-height: 1.5;
}

/* =============================================
   INFO BLOCKS (2-col text)
   ============================================= */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.info-block {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.info-block h3 { color: var(--clr-gold); }

/* =============================================
   PAYMENTS TABLE
   ============================================= */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}
table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: .88rem;
}
thead tr {
  background: var(--clr-surface2);
}
th {
  padding: 14px 18px;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-muted);
  border-bottom: 1px solid var(--clr-border);
  white-space: nowrap;
}
td {
  padding: 14px 18px;
  color: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
tbody tr:hover { background: rgba(201,162,39,.04); }
.badge-yes {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--clr-emerald);
  background: rgba(29,184,126,.1);
  border-radius: 99px;
  padding: 3px 10px;
}
.badge-no {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--clr-red);
  background: rgba(229,62,62,.1);
  border-radius: 99px;
  padding: 3px 10px;
}

/* =============================================
   REVIEW / PROS CONS
   ============================================= */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-box, .cons-box {
  border-radius: var(--radius-lg);
  padding: 28px 28px;
}
.pros-box {
  background: linear-gradient(135deg, rgba(29,184,126,.06) 0%, rgba(29,184,126,.02) 100%);
  border: 1px solid rgba(29,184,126,.22);
}
.cons-box {
  background: linear-gradient(135deg, rgba(229,62,62,.06) 0%, rgba(229,62,62,.02) 100%);
  border: 1px solid rgba(229,62,62,.22);
}
.pros-box h3 { color: var(--clr-emerald); }
.cons-box h3 { color: var(--clr-red); }
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--clr-muted);
}
.check-list li::before {
  content: '✓';
  color: var(--clr-emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.cons-list li::before { content: '✗'; color: var(--clr-red); }

/* =============================================
   HOW TO GUIDE (steps)
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  counter-increment: step;
}
.step-card::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(201,162,39,.1);
  line-height: 1;
}
.step-card__icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}
.step-card h3 { color: var(--clr-white); font-size: 1rem; }

/* =============================================
   RATING BLOCK
   ============================================= */
.rating-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.rating-score {
  text-align: center;
}
.rating-score__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  display: block;
}
.rating-score__stars {
  font-size: 1.4rem;
  color: var(--clr-gold);
  display: block;
  margin: 6px 0 4px;
  letter-spacing: 2px;
}
.rating-score__label { font-size: .78rem; color: var(--clr-muted); }
.rating-bars { display: flex; flex-direction: column; gap: 14px; }
.rating-row {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  gap: 12px;
  align-items: center;
  font-size: .85rem;
}
.rating-row__label { color: var(--clr-muted); }
.rating-bar-track {
  height: 8px;
  background: var(--clr-border);
  border-radius: 99px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-gold) 0%, var(--clr-gold-lt) 100%);
  border-radius: 99px;
}
.rating-row__val { color: var(--clr-gold); font-weight: 700; text-align: right; }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item input[type="checkbox"] { display: none; }
.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--clr-white);
  font-size: .95rem;
  transition: background var(--transition);
  user-select: none;
}
.faq-label:hover { background: rgba(255,255,255,.03); }
.faq-label::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--clr-gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item input:checked ~ .faq-label { background: rgba(201,162,39,.05); }
.faq-item input:checked ~ .faq-label::after { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item input:checked ~ .faq-body { max-height: 600px; }
.faq-body__inner {
  padding: 0 24px 20px;
  color: var(--clr-muted);
  font-size: .9rem;
  line-height: 1.75;
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
}
.faq-body__inner p { color: var(--clr-muted); margin-bottom: 10px; }
.faq-body__inner p:last-child { margin-bottom: 0; }

/* =============================================
   RESPONSIBLE GAMBLING
   ============================================= */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.rg-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.rg-card__icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.rg-card h4 { color: var(--clr-white); margin-bottom: 8px; }
.rg-card p { font-size: .82rem; margin: 0; }

/* =============================================
   PROVIDERS
   ============================================= */
.providers-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 20px 0 0;
}
.provider-badge {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-muted);
  transition: all var(--transition);
}
.provider-badge:hover { border-color: var(--clr-gold); color: var(--clr-gold-lt); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #06090f;
  border-top: 1px solid var(--clr-border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: .84rem;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .86rem;
  color: var(--clr-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-white); }
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .78rem; color: var(--clr-muted); margin: 0; }
.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.age-badge {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--clr-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--clr-red);
  flex-shrink: 0;
}
.rg-badge {
  font-size: .72rem;
  font-weight: 600;
  color: var(--clr-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
}
.footer-disclaimer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
  font-size: .76rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* =============================================
   CANONICAL NOTE (visually hidden SEO)
   ============================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .rating-wrap { grid-template-columns: 1fr; gap: 28px; }
  .rating-score { display: flex; align-items: center; gap: 20px; }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }

  .nav { display: none; }

  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr 1fr; }
  .about-stat-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .bonus-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }
  .bonus-card__right { order: -1; }

  .rating-wrap { padding: 28px 24px; }
  .rating-row { grid-template-columns: 100px 1fr 36px; }
  .rating-score { flex-direction: column; }

  .header__actions .btn-outline { display: none; }

  .mid-banner__inner { flex-direction: column; text-align: center; }
  .top-banner__inner { flex-direction: column; gap: 8px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .features-strip__grid { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
  .about-stat-row { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 56px; }
  .info-block { padding: 24px 18px; }
  .rating-row { grid-template-columns: 90px 1fr 32px; font-size: .78rem; }
}
