/* ===================================================
   CORAL CASINO UK — style.css
   Brand colours: Coral Red #D62B2B, Gold #FFD700,
   Dark #1a1a1a, Off-white #F8F4F0
=================================================== */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral-red:    #D62B2B;
  --coral-dark:   #A01F1F;
  --coral-light:  #F8E8E8;
  --gold:         #FFD700;
  --gold-dark:    #C9A800;
  --dark:         #1a1a1a;
  --dark-2:       #252525;
  --dark-3:       #2f2f2f;
  --text:         #2b2b2b;
  --text-muted:   #666;
  --off-white:    #F8F4F0;
  --white:        #ffffff;
  --border:       #e2dbd5;
  --success:      #1a7f3c;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.18);
  --font-body:    'Georgia', 'Times New Roman', serif;
  --font-ui:      -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --max-w:        1160px;
}

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

body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--coral-red); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--coral-red);
  color: var(--white);
  padding: 12px 28px;
  font-size: 15px;
}
.btn--primary:hover { background: var(--coral-dark); }

.btn--outline {
  background: transparent;
  color: var(--coral-red);
  border: 2px solid var(--coral-red);
  padding: 11px 26px;
  font-size: 15px;
}
.btn--outline:hover { background: var(--coral-light); }

.btn--outline-sm {
  background: transparent;
  color: var(--coral-red);
  border: 2px solid var(--coral-red);
  padding: 8px 18px;
  font-size: 13px;
}
.btn--outline-sm:hover { background: var(--coral-light); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 12px 28px;
  font-size: 15px;
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  font-size: 16px;
}
.btn--gold:hover { background: var(--gold-dark); }

.btn--xl { padding: 18px 48px; font-size: 18px; border-radius: 8px; }
.btn--lg { padding: 14px 36px; font-size: 16px; }

.btn--play {
  background: var(--coral-red);
  color: var(--white);
  padding: 10px 24px;
  font-size: 14px;
  width: 100%;
}
.btn--play:hover { background: var(--coral-dark); }

.btn--play-sm {
  background: var(--coral-red);
  color: var(--white);
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 5px;
  margin-top: auto;
}
.btn--play-sm:hover { background: var(--coral-dark); }

.btn--topbar {
  background: var(--gold);
  color: var(--dark);
  padding: 7px 20px;
  font-size: 14px;
  border-radius: 5px;
  flex-shrink: 0;
}
.btn--topbar:hover { background: var(--gold-dark); transform: none; }

.btn--nav {
  background: var(--gold);
  color: var(--dark);
  padding: 9px 18px;
  font-size: 14px;
  border-radius: 5px;
}
.btn--nav:hover { background: var(--gold-dark); }

/* ── Bonus Topbar ── */
.bonus-topbar {
  background: var(--coral-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  font-size: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.bonus-topbar__text strong { color: var(--gold); }

/* ── Header ── */
.header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__svg { height: 40px; width: auto; }

/* Nav */
.nav { display: flex; align-items: center; }
.nav__toggle-check { display: none; }
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__link {
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); text-decoration: none; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a0d0d 40%, #3d1212 70%, #1a0a0a 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(214,43,43,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__inner { position: relative; z-index: 2; max-width: 720px; }

.hero__badge {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.hero__title {
  font-family: var(--font-body);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: clamp(20px, 3.5vw, 28px);
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
  font-weight: 300;
}
.hero__subtitle strong { color: var(--gold); font-weight: 700; }

.hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 560px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__stat-num {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--dark-2);
  padding: 16px 0;
  border-bottom: 1px solid #333;
}
.trust-bar__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}
.trust-bar__icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Sections ── */
.section { padding: 72px 0; }
.section--dark {
  background: var(--dark-2);
  color: var(--white);
}
.section--dark .section__sub { color: rgba(255,255,255,0.65); }
.section--dark h2 { color: var(--white); }
.section--dark h3 { color: rgba(255,255,255,0.9); }
.section--dark p { color: rgba(255,255,255,0.8); }

.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__header h2 {
  font-family: var(--font-body);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.section__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Game Grids ── */
.game-grid--featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.game-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.game-card--wide .game-card__icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--coral-light);
  border-radius: 50%;
}
.game-card--wide h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.game-card--wide .game-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

/* Popular small cards */
.game-grid--popular {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card--small {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 18px 18px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.game-card--small:hover {
  border-color: var(--coral-red);
  box-shadow: 0 0 0 1px var(--coral-red);
}
.game-card__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--coral-red);
  line-height: 1;
}
.game-card__name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.game-card--small p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  flex: 1;
}

/* ── Review Body ── */
.review-body {
  max-width: 820px;
  margin: 0 auto;
}
.review-body h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 4px solid var(--coral-red);
}
.review-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}
.review-body strong { color: var(--coral-red); }

/* ── Promo Grid ── */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.promo-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promo-card--main {
  background: linear-gradient(135deg, var(--coral-dark) 0%, #8a1515 100%);
  border-color: var(--gold);
  grid-column: span 2;
  border-width: 2px;
}
.promo-card__badge {
  display: inline-block;
  background: rgba(255,215,0,0.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,215,0,0.3);
}
.promo-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--white);
  margin: 0;
}
.promo-card__amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.promo-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  flex: 1;
}

/* ── Mid Banner ── */
.mid-banner {
  background: linear-gradient(90deg, var(--coral-dark) 0%, #c0392b 50%, var(--coral-dark) 100%);
  padding: 22px 0;
}
.mid-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-banner__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}
.mid-banner__text strong {
  font-size: 18px;
  color: var(--gold);
}
.mid-banner__text span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* ── Live Casino Grid ── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.live-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.live-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.live-card__indicator {
  position: absolute;
  top: 18px; right: 18px;
  width: 10px; height: 10px;
  background: #1a7f3c;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(26,127,60,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(26,127,60,0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(26,127,60,0.05); }
}
.live-card__icon { font-size: 36px; }
.live-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.live-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.live-card__meta {
  font-size: 12px;
  color: var(--coral-red);
  font-weight: 600;
  background: var(--coral-light);
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
}

/* ── Tech Section ── */
.tech-text {
  max-width: 820px;
  margin: 0 auto 48px;
}
.tech-text h3 {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--coral-red);
}
.tech-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 14px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.feature-card__icon { font-size: 30px; margin-bottom: 12px; }
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}

/* ── Payments Table ── */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.payments-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: 15px;
}
.payments-table thead {
  background: var(--coral-red);
  color: var(--white);
}
.payments-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.payments-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
}
.payments-table tbody tr:last-child td { border-bottom: none; }
.payments-table tbody tr:nth-child(even) { background: #faf7f5; }
.payments-table tbody tr:hover { background: var(--coral-light); }
.pm-icon {
  font-size: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ── Mobile Section ── */
.mobile-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.mobile-section__text h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.mobile-section__text p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 14px;
}
.mobile-section__text strong { color: var(--coral-red); }
.mobile-section__btns { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* Phone Mockup */
.phone-mockup {
  width: 200px;
  flex-shrink: 0;
  background: var(--dark);
  border-radius: 24px;
  padding: 16px 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  border: 2px solid #333;
}
.phone-mockup__screen {
  background: #111;
  border-radius: 14px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-mockup__status {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  text-align: right;
}
.phone-mockup__logo {
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--coral-red);
  letter-spacing: 2px;
}
.phone-mockup__game {
  text-align: center;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
}
.phone-mockup__balance {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.phone-mockup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 4px 0;
}
.phone-mockup__cell {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 6px;
  text-align: center;
  font-size: 16px;
}
.phone-mockup__btn {
  background: var(--coral-red);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.15s;
}
.phone-mockup__btn:hover { background: var(--coral-dark); }

/* ── Responsible Gambling ── */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.rg-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.rg-card__icon { font-size: 32px; margin-bottom: 10px; }
.rg-card h3 { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.rg-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

.rg-footer {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  line-height: 1.7;
}
.rg-footer strong { color: rgba(255,255,255,0.85); }

/* ── FAQ ── */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq__item {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.faq__check { display: none; }

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--dark-3);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
  line-height: 1.45;
}
.faq__question:hover { background: #3a3a3a; }

.faq__arrow {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
  line-height: 1;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: #222;
  padding: 0 22px;
}
.faq__answer p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.72;
  margin: 0;
}

.faq__check:checked + .faq__question { background: #3a3a3a; border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq__check:checked + .faq__question .faq__arrow { transform: rotate(180deg); }
.faq__check:checked ~ .faq__answer {
  max-height: 500px;
  padding: 18px 22px;
}

/* ── Pros & Cons ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pros-cons__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pros-cons__title--pros { color: var(--success); }
.pros-cons__title--cons { color: #c0392b; }
.pros-cons__col--pros {
  background: #f0faf4;
  border: 1px solid #b7e4c7;
  border-radius: var(--radius-lg);
  padding: 28px;
}
.pros-cons__col--cons {
  background: #fff5f5;
  border: 1px solid #f8c8c8;
  border-radius: var(--radius-lg);
  padding: 28px;
}
.pros-cons__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pros-cons__col--pros .pros-cons__list li::before {
  content: '✓ ';
  color: var(--success);
  font-weight: 700;
}
.pros-cons__col--cons .pros-cons__list li::before {
  content: '△ ';
  color: #c0392b;
  font-weight: 700;
}
.pros-cons__list li { font-size: 15px; line-height: 1.5; color: var(--text); }

/* ── Final CTA ── */
.final-cta {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 50%, #1a0a0a 100%);
  padding: 80px 0;
  text-align: center;
}
.final-cta__inner { max-width: 640px; margin: 0 auto; }
.final-cta__title {
  font-family: var(--font-body);
  font-size: clamp(28px, 5vw, 42px);
  color: var(--white);
  margin-bottom: 18px;
}
.final-cta__text {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 28px;
}
.final-cta__offer {
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 32px;
}
.final-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.final-cta__legal {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 220px;
}
.footer__logo { height: 34px; width: auto; }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col h4 { font-size: 13px; color: var(--white); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; cursor: pointer; }
.footer__col a:hover { color: var(--coral-red); text-decoration: none; }

.footer__trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__badge span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
}

.footer__legal p {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-bottom: 10px;
}
.footer__legal strong { color: rgba(255,255,255,0.6); }

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 1100px) {
  .game-grid--popular { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo-card--main { grid-column: span 2; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .section { padding: 52px 0; }
  .game-grid--featured { grid-template-columns: 1fr 1fr; }
  .game-grid--popular { grid-template-columns: repeat(2, 1fr); }
  .live-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-section { grid-template-columns: 1fr; }
  .phone-mockup { margin: 0 auto; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { max-width: 100%; }
  .pros-cons { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding: 52px 0 44px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }

  .nav__burger { display: flex; }
  .nav__list {
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
    transform: translateY(-110%);
    transition: transform 0.3s;
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav__toggle-check:checked ~ .nav__list { transform: translateY(0); }
  .nav__toggle-check:checked ~ .nav__burger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle-check:checked ~ .nav__burger span:nth-child(2) { opacity: 0; }
  .nav__toggle-check:checked ~ .nav__burger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav__link {
    padding: 14px 20px;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__list li:last-child { padding: 12px 20px 0; }
  .btn--nav { width: 100%; }

  .game-grid--featured { grid-template-columns: 1fr; }
  .game-grid--popular { grid-template-columns: 1fr 1fr; }

  .promo-grid { grid-template-columns: 1fr; }
  .promo-card--main { grid-column: span 1; }

  .live-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .rg-grid { grid-template-columns: 1fr 1fr; }

  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__trust { gap: 18px; }

  .mid-banner__inner { flex-direction: column; text-align: center; }
  .mid-banner__inner .btn { width: 100%; }

  .bonus-topbar { flex-direction: column; gap: 10px; padding: 12px 16px; }
  .btn--topbar { width: 100%; }

  .faq__question { font-size: 14px; padding: 15px 16px; }

  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 420px) {
  .game-grid--popular { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}
