/* ============================================
   JACKSPAY CASINO — style.css
   ============================================ */

/* 1. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* 2. Variables */
:root {
  --gold:       #D4AF37;
  --gold-light: #F5D060;
  --gold-dark:  #9A7C10;
  --gold-glow:  0 0 24px rgba(212,175,55,0.45);
  --bg:         #08080F;
  --bg-2:       #0F0F1E;
  --bg-3:       #161628;
  --border:     rgba(212,175,55,0.20);
  --border-h:   rgba(212,175,55,0.45);
  --text:       #E5E5F0;
  --muted:      #7878A0;
  --green:      #2ECC70;
  --red:        #E74C3C;
  --r:          12px;
  --r-lg:       20px;
  --shadow:     0 8px 40px rgba(0,0,0,0.65);
  --t:          0.25s ease;
}

/* 3. Base */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
a { color: var(--gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* 4. Utilities */
.container     { max-width: 1220px; margin: 0 auto; padding: 20px; }
.section       { padding: 80px 0; }
.section--sm   { padding: 50px 0; }
.section--dark { background: var(--bg-2); }
.text-gold     { color: var(--gold); }
.text-center   { text-align: center; }
.text-muted    { color: var(--muted); }
.d-flex        { display: flex; }
.align-c       { align-items: center; }
.justify-c     { justify-content: center; }
.gap-1         { gap: 10px; }
.gap-2         { gap: 20px; }
.mt-2          { margin-top: 20px; }
.mt-3          { margin-top: 30px; }
.mb-3          { margin-bottom: 30px; }

/* 5. Section headings */
.section-header          { text-align: center; margin-bottom: 52px; }
.section-header h2       { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px; }
.section-header p        { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-header .line    { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 18px auto 0; border-radius: 3px; }

/* 6. Buttons */
@keyframes pulse-gold {
  0%   { box-shadow: 0 4px 20px rgba(212,175,55,0.35), 0 0 0 0 rgba(212,175,55,0.55); }
  70%  { box-shadow: 0 4px 20px rgba(212,175,55,0.35), 0 0 0 12px rgba(212,175,55,0); }
  100% { box-shadow: 0 4px 20px rgba(212,175,55,0.35), 0 0 0 0 rgba(212,175,55,0); }
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--r);
  font-size: 1.05rem; font-weight: 700; cursor: pointer;
  border: none; transition: all var(--t);
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn--gold    { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #000; box-shadow: 0 4px 20px rgba(212,175,55,0.35); animation: pulse-gold 2.2s ease-out infinite; }
.btn--gold:hover  { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 30px rgba(212,175,55,0.65); color: #000; animation: none; }
.btn--outline     { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: #000; transform: translateY(-2px); }
.btn--sm      { padding: 11px 22px; font-size: 0.9rem; }
.btn--lg      { padding: 20px 46px; font-size: 1.15rem; }
.btn--ghost   { background: rgba(212,175,55,0.08); color: var(--gold); border: 1px solid var(--border); }
.btn--ghost:hover { background: rgba(212,175,55,0.18); color: var(--gold); }

/* 7. Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,8,15,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 70px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 900;
  color: var(--gold); letter-spacing: -0.5px;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.35rem; font-weight: 900; color: #000;
}
.logo .logo-text span { color: #fff; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 14px; border-radius: var(--r);
  color: var(--text); font-size: 0.9rem; font-weight: 600;
  transition: all var(--t);
}
.site-nav a:hover, .site-nav a.active { color: var(--gold); background: rgba(212,175,55,0.09); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; background: none; border: none;
}
.burger span { width: 24px; height: 2.5px; background: var(--text); border-radius: 3px; transition: all var(--t); }

.mobile-nav {
  display: none; background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 16px 20px; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 16px; border-radius: var(--r); color: var(--text); font-weight: 600; display: block; }
.mobile-nav a:hover { color: var(--gold); background: rgba(212,175,55,0.08); }
.mobile-nav .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* 8. Hero */
.hero {
  position: relative; min-height: 580px;
  display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(212,175,55,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(80,40,180,0.05) 0%, transparent 50%),
    var(--bg);
}
.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'%3E%3Cg fill='%23D4AF37' 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");
}
.hero-content { position: relative; z-index: 1; max-width: 660px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.10); border: 1px solid var(--gold);
  color: var(--gold); padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 22px; letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
  line-height: 1.12; margin-bottom: 22px; letter-spacing: -1px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1.12rem; color: var(--muted); margin-bottom: 34px; max-width: 530px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 44px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat-value { font-size: 1.65rem; font-weight: 900; color: var(--gold); }
.hero-stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }

/* 9. Trust bar */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 14px 40px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.86rem; font-weight: 600;
}
.trust-item .icon { font-size: 1.1rem; }

/* 10. Bonus cards */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 30px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.bonus-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.06), transparent 70%);
}
.bonus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border-h); }
.bonus-card .badge { font-size: 0.72rem; padding: 3px 10px; border-radius: 50px; background: rgba(212,175,55,0.15); color: var(--gold); font-weight: 700; display: inline-block; margin-bottom: 14px; }
.bonus-card .amount { font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.bonus-card .title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.bonus-card .desc { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }
.bonus-card .wager { color: var(--muted); font-size: 0.78rem; margin-top: 12px; border-top: 1px solid var(--border); padding-top: 12px; }

/* 11. Game cards */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 16px; }
.game-card {
  position: relative; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; background: var(--bg-2);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.game-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow), var(--gold-glow); border-color: var(--border-h); }
.game-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover img { transform: scale(1.06); }
.game-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(145deg, var(--bg-2), var(--bg-3));
  font-size: 3.5rem;
}
.game-placeholder .gname { font-size: 0.75rem; color: var(--muted); text-align: center; padding: 0 10px; }
.game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 14px;
  opacity: 0; transition: opacity var(--t);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-name  { font-size: 0.88rem; font-weight: 700; color: #fff; line-height: 1.2; }
.game-prov  { font-size: 0.74rem; color: var(--gold); margin-top: 3px; }
.game-play  {
  display: block; background: var(--gold); color: #000;
  padding: 7px 0; border-radius: 8px;
  font-size: 0.8rem; font-weight: 700;
  margin-top: 10px; text-align: center;
}
.hot-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: #fff;
  font-size: 0.68rem; font-weight: 900; padding: 3px 8px;
  border-radius: 6px; letter-spacing: 0.5px; text-transform: uppercase;
}
.new-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--green); color: #000;
  font-size: 0.68rem; font-weight: 900; padding: 3px 8px;
  border-radius: 6px; letter-spacing: 0.5px; text-transform: uppercase;
}

/* 12. Provider logos */
.providers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.provider-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 16px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; transition: all var(--t); min-height: 100px; cursor: pointer;
}
.provider-card:hover { border-color: var(--gold); box-shadow: var(--gold-glow); transform: translateY(-3px); }
.provider-card img { max-height: 38px; width: auto; filter: brightness(0) invert(0.7); transition: filter var(--t); }
.provider-card:hover img { filter: brightness(0) invert(1); }
.provider-card .provider-name { font-size: 0.78rem; color: var(--muted); font-weight: 600; text-align: center; }
.provider-card .provider-count { font-size: 0.72rem; color: rgba(212,175,55,0.6); }

/* 13. Payment methods */
.payments-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(125px, 1fr)); gap: 12px; }
.payment-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 10px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  transition: all var(--t);
}
.payment-card:hover { border-color: var(--border-h); transform: translateY(-2px); }
.payment-card img { max-height: 38px; width: auto; max-width: 90px; }
.payment-card span { font-size: 0.75rem; color: var(--muted); text-align: center; }

/* 14. Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.feature-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  transition: all var(--t);
}
.feature-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.feature-icon {
  width: 54px; height: 54px;
  background: rgba(212,175,55,0.09);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

/* 15. Reviews */
.rating-widget {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px; text-align: center;
  max-width: 340px; margin: 0 auto 50px;
}
.rating-num   { font-size: 5rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.rating-stars { font-size: 1.7rem; color: var(--gold); letter-spacing: 3px; margin-bottom: 8px; }
.rating-count { color: var(--muted); font-size: 0.88rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px;
}
.review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text  { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer     { display: flex; align-items: center; gap: 12px; }
.reviewer-av  {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8960a);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #000; font-size: 1rem; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.93rem; }
.reviewer-meta { color: var(--muted); font-size: 0.78rem; margin-top: 2px; }

/* 16. FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  background: none; border: none; color: var(--text);
  font-size: 0.97rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: color var(--t);
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform var(--t); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 24px; color: var(--muted); font-size: 0.9rem; line-height: 1.72;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* 17. Promo code */
.promo-box {
  background: var(--bg-2); border: 2px dashed rgba(212,175,55,0.4);
  border-radius: var(--r); padding: 24px 30px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.promo-code {
  font-family: 'Courier New', monospace;
  font-size: 1.7rem; font-weight: 900; color: var(--gold);
  letter-spacing: 4px; background: rgba(212,175,55,0.09);
  padding: 10px 24px; border-radius: 10px;
}
.promo-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.promo-info p  { color: var(--muted); font-size: 0.88rem; }

/* 18. Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step  { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; }
.step-num { font-size: 3rem; font-weight: 900; color: rgba(212,175,55,0.13); line-height: 1; margin-bottom: 14px; }
.step h4  { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p   { color: var(--muted); font-size: 0.86rem; line-height: 1.65; }

/* 19. Filter bar */
.filter-bar  { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn  {
  padding: 7px 18px; border-radius: 50px;
  border: 1px solid var(--border); background: var(--bg-2);
  color: var(--muted); font-size: 0.86rem; font-weight: 600;
  cursor: pointer; transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }

/* 20. Breadcrumb */
.breadcrumb { padding: 14px 0; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.bc-list    { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); }
.bc-list a  { color: var(--muted); }
.bc-list a:hover { color: var(--gold); }
.bc-sep     { opacity: 0.35; }
.bc-cur     { color: var(--text); }

/* 21. Page hero */
.page-hero {
  padding: 60px 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(212,175,55,0.06) 0%, transparent 65%), var(--bg);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.page-hero p  { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* 22. Mobile app */
.app-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.app-feature  { display: flex; gap: 16px; align-items: flex-start; }
.app-feat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(212,175,55,0.09); border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.app-feature h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.app-feature p  { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

.app-store-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 22px;
  transition: all var(--t); text-decoration: none; color: var(--text);
}
.store-btn:hover { border-color: var(--gold); color: var(--text); transform: translateY(-2px); }
.store-btn .store-icon { font-size: 1.8rem; }
.store-btn .store-label { font-size: 0.7rem; color: var(--muted); display: block; }
.store-btn .store-name  { font-size: 1rem; font-weight: 700; display: block; }

/* 23. Table */
.table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th {
  background: var(--bg-3); color: var(--gold);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border);
}
td { padding: 14px 16px; border-bottom: 1px solid rgba(212,175,55,0.06); color: var(--muted); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(212,175,55,0.025); }
.td-green { color: var(--green); font-weight: 700; }

/* 24. Legal */
.legal-content { max-width: 900px; margin: 0 auto; color: var(--muted); line-height: 1.8; }
.legal-content h2 { color: var(--text); font-size: 1.4rem; margin: 36px 0 14px; font-weight: 700; }
.legal-content h3 { color: var(--text); font-size: 1.05rem; margin: 24px 0 10px; font-weight: 600; }
.legal-content p  { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 20px; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; }
.legal-updated { background: rgba(212,175,55,0.07); border-left: 3px solid var(--gold); padding: 12px 18px; border-radius: 0 var(--r) var(--r) 0; margin-bottom: 30px; font-size: 0.88rem; }

/* 25. Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 18px 24px; z-index: 9999;
  display: none; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
}
.cookie-banner p  { flex: 1; color: var(--muted); font-size: 0.88rem; min-width: 220px; }
.cookie-banner a  { color: var(--gold); }
.cookie-actions   { display: flex; gap: 10px; }

/* 26. Back to top */
.back-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--shadow); opacity: 0;
  transition: all var(--t); border: none; z-index: 500;
}
.back-top.visible { opacity: 1; }
.back-top:hover   { transform: translateY(-3px); }

/* 27. Footer */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p  { color: var(--muted); font-size: 0.86rem; line-height: 1.7; max-width: 280px; margin-top: 14px; }
.footer-col h4   {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gold); margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a  { color: var(--muted); font-size: 0.86rem; transition: color var(--t); }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--muted); font-size: 0.8rem; }
.footer-badges   { display: flex; gap: 12px; align-items: center; }
.age-badge {
  background: var(--red); color: #fff;
  font-weight: 900; font-size: 0.85rem;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.rg-badge {
  background: rgba(255,255,255,0.06); color: var(--muted);
  font-size: 0.78rem; padding: 6px 14px;
  border-radius: 6px; border: 1px solid var(--border);
}
.footer-disclaimer {
  color: var(--muted); font-size: 0.78rem; line-height: 1.65;
  border-top: 1px solid var(--border); padding: 20px 0 30px;
  max-width: 960px;
}

/* 28. Responsive */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-nav, .header-actions { display: none; }
  .burger { display: flex; }
  .section { padding: 50px 0; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); }
  .providers-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .btn--lg { padding: 14px 24px; font-size: 1rem; }
  .hero h1 { font-size: 1.9rem; }
  .promo-box { flex-direction: column; text-align: center; }
  .promo-code { font-size: 1.35rem; }
}
