:root {
  --brand-primary:     #8B2FC9;
  --brand-secondary:   #1A1A2E;
  --brand-accent:      #2ED884;
  --brand-bg:          #0D0D0D;
  --brand-text:        #FFFFFF;
  --brand-header-bg:   #7B26B8;
  --brand-btn-bg:      #2ED884;
  --brand-btn-text:    #0D0D0D;
  --brand-btn-radius:  30px;
  --brand-head-font:   'Impact', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 900;
  --brand-body-size:   16px;
}

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

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

body {
  background-color: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--brand-body-font), sans-serif;
  font-size: var(--brand-body-size);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--brand-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }
a:focus { outline: 2px solid var(--brand-accent); outline-offset: 3px; }

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-accent);
  color: #000;
  padding: 10px 20px;
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

/* ───────── HEADER / NAV ───────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.main-nav ul li a {
  color: #fff;
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--brand-btn-radius);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: rgba(255,255,255,0.15);
  color: #fff;
  outline: none;
}

.nav-cta-btn {
  background: var(--brand-accent);
  color: #000 !important;
  padding: 10px 24px !important;
  border-radius: var(--brand-btn-radius) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}
.nav-cta-btn:hover { background: #24c070 !important; color: #000 !important; transform: translateY(-1px); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 22px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.1); }

/* ───────── HERO ───────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0036 0%, #5a1299 45%, #8B2FC9 70%, #2a0060 100%);
}

.hero-doodle {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(46,216,132,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(139,47,201,0.3) 0%, transparent 50%);
  z-index: 0;
}

.hero-doodle::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: rgba(46,216,132,0.2);
  border: 1px solid var(--brand-accent);
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero h1 span { color: var(--brand-accent); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus { outline: 3px solid #fff; outline-offset: 3px; }

.btn-hero {
  background: var(--brand-accent);
  color: #000;
  font-size: 18px;
  padding: 18px 50px;
  box-shadow: 0 6px 30px rgba(46,216,132,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-hero:hover {
  background: #24c070;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(46,216,132,0.55);
}

.btn-cta {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,47,201,0.4);
}
.btn-cta:hover {
  background: #7a28b5;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,47,201,0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
}
.btn-outline:hover {
  background: var(--brand-accent);
  color: #000;
  transform: translateY(-2px);
}

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ───────── FLOATING CTA ───────── */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-accent);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-body-font);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  color: #000;
}

/* ───────── SECTION SHARED ───────── */
section { padding: 80px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title span { color: var(--brand-accent); }

.section-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ───────── BONUS STRIP (full-width single col) ───────── */
.bonus-strip {
  background: linear-gradient(90deg, #1a0036 0%, #5a1299 50%, #1a0036 100%);
  border-top: 2px solid rgba(139,47,201,0.4);
  border-bottom: 2px solid rgba(139,47,201,0.4);
  padding: 50px 0;
}

.bonus-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.bonus-text { flex: 1; min-width: 280px; }
.bonus-text h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bonus-text h2 em { color: var(--brand-accent); font-style: normal; }
.bonus-text p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 480px; }
.bonus-action { flex-shrink: 0; }

/* ───────── FEATURES (two-column side-by-side) ───────── */
.features-section { background: #0f0f1a; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-text p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.feature-list { list-style: none; margin-top: 24px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
}
.feature-list li .fi {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(46,216,132,0.15);
  border: 1px solid rgba(46,216,132,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--brand-accent);
  margin-top: 2px;
}

.two-col-visual {
  background: linear-gradient(135deg, rgba(139,47,201,0.15) 0%, rgba(46,216,132,0.05) 100%);
  border: 1px solid rgba(139,47,201,0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,47,201,0.25);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
}
.stat-card .stat-num {
  font-family: var(--brand-head-font);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-accent);
  display: block;
}
.stat-card .stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ───────── GAME CARDS (three-column grid) ───────── */
.games-section {
  background: var(--brand-bg);
  position: relative;
}

.games-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238B2FC9' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.games-section .container { position: relative; z-index: 1; }

.games-section .section-intro { margin-left: auto; margin-right: auto; text-align: center; }
.games-section > .container > .section-label,
.games-section > .container > .section-title { text-align: center; display: block; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.game-card {
  background: linear-gradient(145deg, #1a1a2e, #12122a);
  border: 1px solid rgba(139,47,201,0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(139,47,201,0.35);
  border-color: rgba(139,47,201,0.6);
}

.game-card-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.game-card-thumb-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(139,47,201,0.3), rgba(46,216,132,0.1));
}

.game-card-body { padding: 18px; }
.game-card-body h3 {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.game-card-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 14px;
}
.game-card-tag {
  display: inline-block;
  background: rgba(46,216,132,0.15);
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(46,216,132,0.3);
}

.games-cta { text-align: center; }

/* ───────── BONUSES (asymmetric 2/3 + 1/3) ───────── */
.bonuses-section { background: #0f0f1a; }

.asym-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.bonus-cards { display: flex; flex-direction: column; gap: 20px; }

.bonus-card {
  background: linear-gradient(135deg, rgba(139,47,201,0.12), rgba(26,26,46,0.8));
  border: 1px solid rgba(139,47,201,0.3);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bonus-card:hover {
  border-color: rgba(46,216,132,0.4);
  box-shadow: 0 4px 24px rgba(46,216,132,0.08);
}

.bonus-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(139,47,201,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonus-card-text h3 {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bonus-card-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.bonus-card-text .term-note {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.sidebar-panel {
  background: linear-gradient(145deg, #1a0036, #2d0060);
  border: 1px solid rgba(139,47,201,0.4);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: sticky;
  top: 90px;
}
.sidebar-panel h3 {
  font-family: var(--brand-head-font);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sidebar-panel p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}
.sidebar-panel .btn { width: 100%; text-align: center; margin-bottom: 12px; }
.sidebar-panel .small-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ───────── PAYMENTS (full-width, single col) ───────── */
.payments-section {
  background: var(--brand-bg);
  border-top: 1px solid rgba(139,47,201,0.15);
}

.payments-section .section-title,
.payments-section .section-label { text-align: center; display: block; }
.payments-section .section-intro { text-align: center; margin: 0 auto 48px; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.payment-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,47,201,0.2);
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.payment-item:hover {
  border-color: rgba(46,216,132,0.35);
  background: rgba(46,216,132,0.04);
}
.payment-item .pay-icon { font-size: 2.4rem; margin-bottom: 12px; }
.payment-item h4 {
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.payment-item p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ───────── TRUST / LICENSING (two-col reversed) ───────── */
.trust-section { background: linear-gradient(180deg, #0f0f1a 0%, #0D0D0D 100%); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,47,201,0.25);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.trust-badge .tb-icon { font-size: 1.2rem; color: var(--brand-accent); }

.trust-visual {
  background: linear-gradient(135deg, rgba(139,47,201,0.12), rgba(26,26,46,0.6));
  border: 1px solid rgba(139,47,201,0.25);
  border-radius: 20px;
  padding: 40px;
}
.trust-visual p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.trust-visual p:last-child { margin-bottom: 0; }

/* ───────── FAQ (full-width single col) ───────── */
.faq-section {
  background: #0D0D0D;
  border-top: 1px solid rgba(139,47,201,0.1);
}
.faq-section .section-title,
.faq-section .section-label { text-align: center; display: block; }
.faq-section .section-intro { text-align: center; margin: 0 auto 48px; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(139,47,201,0.25);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: rgba(255,255,255,0.03);
  color: #fff;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--brand-body-font);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(139,47,201,0.12); }
.faq-question:focus { outline: 2px solid var(--brand-accent); outline-offset: -2px; }

.faq-icon {
  font-size: 20px;
  color: var(--brand-accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px;
  background: rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 20px 24px;
}

/* ───────── FINAL CTA BAND ───────── */
.cta-band {
  background: linear-gradient(135deg, #5a1299 0%, #8B2FC9 50%, #2a0060 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ───────── FOOTER ───────── */
.site-footer {
  background: #060608;
  border-top: 1px solid rgba(139,47,201,0.25);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.legal-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.legal-logo-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.age-badge {
  background: #c0392b;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.rg-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}
.rg-links a:hover { color: #fff; }

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ───────── LEGAL PAGES ───────── */
.legal-page { padding: 80px 0; }
.legal-page h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.legal-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px;
}
.legal-body h2 {
  font-family: var(--brand-head-font);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--brand-accent);
  text-transform: uppercase;
  margin: 36px 0 12px;
}
.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 8px;
}
.legal-body p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-body ul {
  margin: 12px 0 16px 20px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.7;
}
.legal-body ul li { margin-bottom: 6px; }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .asym-grid { grid-template-columns: 1fr; }
  .sidebar-panel { position: static; }
}

@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 999;
    gap: 4px;
  }
  .main-nav { position: relative; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-visual { order: -1; }
  .bonus-strip-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { min-height: 75vh; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .floating-cta { bottom: 20px; right: 16px; padding: 12px 20px; font-size: 14px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .payment-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .btn-hero { padding: 14px 30px; font-size: 16px; }
  .stat-grid { grid-template-columns: 1fr; }
}