:root {
  /* Raja Luck logo: burgundy lounge, metallic gold, casino red */
  --bg: #070305;
  --panel: #14080c;
  --panel-2: #0c0406;
  --text: #fffef8;
  --muted: #d4cbc4;
  --accent: #d4af37;
  --accent-bright: #dfc268;
  --accent-deep: #8a6b22;
  --accent-2: #c41e3a;
  --accent-soft: rgba(212, 175, 55, 0.22);
  --border: rgba(212, 175, 55, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --burgundy-mid: rgba(90, 14, 28, 0.45);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.62);
  --card-a: rgba(52, 18, 26, 0.58);
  --card-b: rgba(18, 6, 10, 0.82);
  --font-display: 'Syne', 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
  /* Section rhythm (modern layout) */
  --section-y: clamp(40px, 5vw, 72px);
  --section-y-sm: clamp(28px, 4vw, 48px);
  --r-card: 18px;
  --r-card-lg: 22px;
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.38);
  --shadow-card-hover: 0 24px 56px rgba(0, 0, 0, 0.48);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 100% 80% at 50% -15%, rgba(110, 18, 32, 0.42), transparent 52%),
    radial-gradient(circle at 18% 35%, rgba(139, 0, 0, 0.12), transparent 38%),
    radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.07), transparent 36%),
    linear-gradient(180deg, #16060a 0%, var(--bg) 38%, #030102 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding-top: 84px;
}

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

h1, h2, h3, h4, h5 { color: var(--text); margin-top: 0; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p { color: var(--muted); margin-top: 0; text-align: left; }

a { color: var(--text); text-decoration: none; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding-inline: 0;
}
.container.narrow {
  width: min(960px, 92%);
  padding-inline: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(14px) saturate(1.15);
  background: linear-gradient(180deg, rgba(32, 8, 14, 0.96), rgba(8, 2, 5, 0.92));
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  position: relative;
  padding: 6px 14px 6px 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(100, 16, 28, 0.35));
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 10px 28px rgba(196, 30, 58, 0.12),
    0 1px 0 rgba(212, 175, 55, 0.12) inset;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 14px 36px rgba(212, 175, 55, 0.22),
    0 0 28px rgba(196, 30, 58, 0.18);
}

.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  max-width: min(168px, 38vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.nav-links { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }

.nav-links a { color: var(--muted); font-weight: 500; }

.nav-links a.active, .nav-links a:hover { color: var(--accent); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn.solid {
  background: linear-gradient(180deg, #dcc069 0%, #b8942f 38%, #8a6b22 100%);
  color: #1a0a06;
  border: 1px solid rgba(138, 104, 32, 0.65);
  box-shadow:
    0 10px 28px rgba(212, 175, 55, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.btn.outline {
  border-color: rgba(212, 175, 55, 0.65);
  color: var(--accent-bright);
  background: rgba(40, 10, 16, 0.35);
}

.btn.ghost {
  border-color: rgba(212, 175, 55, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.32), 0 0 24px rgba(196, 30, 58, 0.12);
}

.menu-toggle { display: none; background: transparent; border: none; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(52px, 6vw, 72px) 0 clamp(56px, 8vw, 88px);
  min-height: auto;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(95, 12, 28, 0.55), transparent 58%),
    linear-gradient(165deg, rgba(4, 1, 2, 0.96) 0%, rgba(42, 8, 16, 0.88) 45%, rgba(3, 1, 2, 0.96) 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(196, 30, 58, 0.2);
  box-shadow: inset 0 -100px 160px rgba(0, 0, 0, 0.75);
}

.hero-aurora {
  position: absolute;
  left: -15%;
  right: -15%;
  top: -30%;
  height: 85%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 42% at 24% 16%, rgba(212, 175, 55, 0.2), transparent 60%),
    radial-gradient(ellipse 48% 40% at 76% 10%, rgba(196, 30, 58, 0.22), transparent 58%),
    radial-gradient(ellipse 60% 38% at 50% 95%, rgba(139, 0, 0, 0.12), transparent 55%);
  filter: blur(0px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(212, 175, 55, 0.12), transparent 38%),
              radial-gradient(circle at 82% 14%, rgba(180, 24, 48, 0.16), transparent 36%),
              radial-gradient(ellipse 72% 50% at 50% 100%, rgba(212, 175, 55, 0.04), transparent 58%),
              linear-gradient(180deg, rgba(8, 2, 4, 0.05), rgba(0, 0, 0, 0.55));
  pointer-events: none;
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(80, 10, 22, 0.15) 0, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(40, 8, 14, 0.2) 0, transparent 40%);
  background-size: 56px 56px, 56px 56px, 100% 100%, 100% 100%;
  -webkit-mask-image: radial-gradient(ellipse 85% 72% at 50% 28%, #000 18%, transparent 72%);
  mask-image: radial-gradient(ellipse 85% 72% at 50% 28%, #000 18%, transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(12px, 2.2vw, 22px) clamp(18px, 2.8vw, 32px);
  position: relative;
  z-index: 2;
  max-width: 1180px;
  align-items: stretch;
}

.hero-title {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 0;
}

.hero-title h1 {
  font-size: clamp(40px, 5.5vw, 58px);
  margin: 0 0 12px;
  line-height: 1.03;
  font-weight: 800;
  color: #f0e4d0;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title h1 {
    background: linear-gradient(102deg, #faf6ef 0%, #ead9b8 26%, #c9a227 48%, #a67c2a 68%, #d4af37 82%, #c4a060 96%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hero-sub {
  margin: 0 auto 16px;
  max-width: 640px;
  font-size: clamp(15px, 1.9vw, 17px);
  line-height: 1.65;
  color: rgba(194, 200, 214, 0.95);
  text-align: center;
}

.hero-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}

.hero-chips li {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 254, 248, 0.95);
  background: rgba(32, 10, 16, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 20px 9px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(230, 218, 210, 0.95);
  background: linear-gradient(135deg, rgba(48, 14, 22, 0.92), rgba(14, 4, 8, 0.88));
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(200, 170, 110, 0.08) inset;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a227, var(--accent-2));
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.65);
  flex-shrink: 0;
}

.hero-copy {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  min-height: 0;
}

.hero-copy-panel {
  flex: 1;
  padding: clamp(20px, 3.5vw, 28px) clamp(22px, 3.5vw, 30px);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(52, 18, 26, 0.58) 0%, rgba(10, 4, 6, 0.82) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(196, 30, 58, 0.08) inset,
    0 1px 0 rgba(190, 160, 100, 0.1) inset;
  backdrop-filter: blur(14px) saturate(1.12);
}

.hero-copy-panel p {
  font-size: clamp(15px, 1.65vw, 16px);
  max-width: none;
  line-height: 1.68;
  margin: 0 0 12px;
  color: rgba(194, 200, 214, 0.96);
}

.hero-copy-panel p:last-of-type {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 14px;
}

.btn-hero-secondary {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 14px;
  background: rgba(40, 12, 18, 0.55);
  border-color: rgba(212, 175, 55, 0.45);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: linear-gradient(120deg, rgba(200, 165, 85, 0.38), rgba(196, 30, 58, 0.2));
  color: #1a0806;
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 999px;
  letter-spacing: 0.4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.22);
}

.hero-stats { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-stats div { padding: 10px 12px; border: 1px solid var(--border); border-radius: 12px; background: rgba(22, 6, 10, 0.65); backdrop-filter: blur(6px); }
.hero-stats strong { color: var(--accent); display: block; font-size: 18px; letter-spacing: 0.2px; }
.hero-stats span { color: var(--muted); font-size: 13px; }

.hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  align-self: stretch;
  min-height: 0;
}

.hero-phone-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: min(420px, 42vw);
  height: 100%;
  min-height: 0;
  padding: 12px 12px 16px;
  border-radius: 30px;
  background: linear-gradient(165deg, rgba(55, 22, 30, 0.65) 0%, rgba(12, 4, 8, 0.95) 55%, rgba(18, 6, 10, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow:
    0 0 0 1px rgba(196, 30, 58, 0.18),
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 0 56px rgba(196, 30, 58, 0.12),
    0 0 40px rgba(212, 175, 55, 0.08);
}

.hero-phone-notch {
  display: block;
  width: min(104px, 32%);
  height: 24px;
  margin: 0 auto 12px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #1c0a10, #070203);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-top: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.hero-phone-frame img {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(185, 155, 95, 0.1) inset;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-phone-frame {
    animation: hero-float 8s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone-frame {
    animation: none;
  }
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

@media (min-width: 1025px) {
  .hero-copy,
  .hero-visual {
    align-self: stretch;
  }
}

@media (min-width: 1200px) {
  .hero-phone-frame {
    max-width: min(440px, 38vw);
  }
}

/* ----- Modern section layout (all pages) ----- */
main > section + section {
  border-top: 1px solid rgba(212, 175, 55, 0.07);
}

.hero + .about-bht {
  border-top: none;
}

main > section:not(.hero) .container,
main > section:not(.hero) .container.narrow {
  position: relative;
}

.pillars { padding: 26px 0 10px; }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.pillar { padding: 18px 18px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(58, 22, 30, 0.88), rgba(28, 10, 16, 0.92)); border-radius: 14px; }
.pillar h3 { margin-bottom: 8px; }

.guide { padding: 60px 0; }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; align-items: center; }
.guide.reverse .guide-grid { direction: rtl; }
.guide.reverse .guide-grid > * { direction: ltr; }

a.eyebrow, p.eyebrow { letter-spacing: 1px; text-transform: uppercase; font-size: 12px; color: var(--accent); margin-bottom: 10px; }

.guide-copy h2 { margin-bottom: 12px; }
.guide-copy p { margin-bottom: 16px; }

.about-bht {
  padding: var(--section-y) 0 var(--section-y-sm);
  background: linear-gradient(180deg, rgba(48, 10, 18, 0.4), rgba(6, 2, 4, 0.96));
  text-align: center;
}

.about-bht-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
}

h2 {
  margin: 0 0 10px;
  color: var(--text);
  display: block;
  width: min(760px, 92vw);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0;
  border-radius: 10px;
  background: transparent;
}

h2 + p,
h2 + ul,
h2 + .method-cards,
h2 + .account-grid {
  margin-top: 0;
}
.home h2 {
  background: linear-gradient(180deg, #e0c678 0%, #b8942f 45%, #7a5c18 100%);
  color: #1a0806;
  text-align: center;
  padding: 12px 20px;
  max-width: 760px;
  width: min(760px, 92vw);
  margin: 0 auto 10px;
  border: 1px solid rgba(138, 104, 32, 0.75);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.2), 0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.about-bht p {
  max-width: 820px;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
}
.about-bht p:last-of-type {
  margin-bottom: 0;
}

/* Keep paragraphs under highlighted headings aligned and same width */
.home h2 + p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-bht .hero-actions {
  justify-content: center;
}

.about-bht .hero-stats {
  justify-content: center;
}

.about-app-shot { display: flex; justify-content: center; }
.about-app-shot img {
  width: min(340px, 85vw);
  margin-bottom: 18px;
  border-radius: var(--r-card-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.about-followup { margin-top: 10px; }
.about-followup p { text-align: center; }

.why-like {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(12, 4, 8, 0.96), rgba(6, 2, 4, 0.9));
}
.why-like h2 {
  margin: 0 auto 12px;
  text-align: center;
  width: min(760px, 92vw);
}
.why-like > .container > p {
  text-align: center;
  max-width: min(720px, 94vw);
  margin: 0 auto 20px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
}
.why-like-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}
.why-like-grid > div {
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--r-card-lg);
  padding: clamp(18px, 2.5vw, 24px) clamp(16px, 2vw, 22px);
  background: linear-gradient(165deg, rgba(58, 22, 30, 0.62), rgba(16, 6, 10, 0.88));
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.why-like-grid > div:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: var(--shadow-card-hover);
}
.why-like-grid h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--accent-bright);
  text-align: left;
}
.why-like-grid p { margin: 0; color: var(--muted); line-height: 1.65; text-align: left; }

.who-enjoy {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(8, 2, 4, 0.94), rgba(4, 1, 2, 0.98));
}
.who-enjoy h2 { text-align: center; margin: 0 auto 12px; }
.who-enjoy p {
  max-width: min(720px, 94vw);
  margin: 0 auto 12px;
  text-align: center;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.72;
}
.who-enjoy p:last-of-type {
  margin-bottom: 0;
}
.login-shot { display: flex; justify-content: center; margin: 10px 0 4px; }
.login-shot img { width: min(340px, 86vw); border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow); }

.download-steps {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(14, 4, 8, 0.96), rgba(5, 2, 3, 0.94));
}
.download-steps .container.narrow {
  text-align: left;
}
.download-steps .container.narrow > h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.download-steps .container.narrow > p {
  margin-bottom: 12px;
  max-width: min(72ch, 100%);
  margin-inline: 0;
  line-height: 1.72;
  text-align: left;
}
.download-steps .method-cards,
.download-steps .account-grid {
  max-width: 920px;
  margin-inline: 0;
}
.download-steps h2 {
  display: block;
  background: linear-gradient(180deg, #e0c678 0%, #b8942f 45%, #7a5c18 100%);
  color: #1a0806;
  padding: 12px 20px;
  border-radius: 14px;
  margin: 4px auto 12px;
  width: min(760px, 92vw);
  border: 1px solid rgba(138, 104, 32, 0.75);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.18);
}
.download-steps p { color: var(--muted); text-align: left; }
.download-steps h3 { margin: 10px 0 6px; text-align: left; }
.download-list {
  max-width: min(72ch, 100%);
  margin: 0 0 10px;
  text-align: left;
  color: var(--muted);
  padding-left: 22px;
}
.download-list li { margin-bottom: 6px; }
.method { text-align: left; }
.method h3 { text-align: left; }
.method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(12px, 2vw, 18px);
  margin-top: 4px;
}
.method-card {
  background: linear-gradient(165deg, var(--card-a), var(--card-b));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-card-lg);
  padding: clamp(18px, 2.5vw, 24px) clamp(18px, 2.2vw, 26px);
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.method-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-card-hover);
}
.method-card h3 {
  margin: 0 0 12px;
  text-align: left;
  font-size: 1.08rem;
  color: var(--accent-bright);
  letter-spacing: 0.02em;
}
.method-card p { margin: 0; }

.account-steps {
  padding: var(--section-y-sm) 0;
  background: linear-gradient(180deg, rgba(18, 5, 10, 0.92), rgba(6, 2, 4, 0.88));
}

.add-money {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(18, 5, 10, 0.94), rgba(6, 2, 4, 0.9));
}
.add-money .container.narrow {
  text-align: left;
}
.add-money h2 {
  text-align: center;
  margin-inline: auto;
}
.add-money h3,
.add-money p {
  text-align: left;
  max-width: min(72ch, 100%);
}
.add-money .bullet-list {
  list-style: disc;
  padding-left: 1.35rem;
  margin: 0 0 18px;
  max-width: min(72ch, 100%);
  text-align: left;
  color: var(--muted);
}
.add-money .bullet-list li {
  margin-bottom: 6px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  align-items: stretch;
}
.account-text { text-align: left; }
.account-text h2 { text-align: center; }
.account-steps p { max-width: 820px; margin: 0 auto 10px; color: var(--muted); }

.download-steps .account-text,
.login-steps .account-text,
.add-money .account-text {
  padding: clamp(18px, 2.5vw, 26px) clamp(18px, 2.2vw, 24px);
  border-radius: var(--r-card-lg);
  background: linear-gradient(165deg, rgba(52, 18, 26, 0.42), rgba(12, 4, 8, 0.72));
  border: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  text-align: left;
}

.download-steps .account-text h3,
.login-steps .account-text h3,
.add-money .account-text h3 {
  margin-top: 0;
  color: var(--accent-bright);
  font-size: 1.06rem;
  text-align: left;
}

.account-visual { display: flex; justify-content: center; align-items: center; }
.account-visual img {
  width: min(300px, 85vw);
  margin: 0 auto;
  border-radius: var(--r-card-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

/* Center images beneath text for add-money steps on all screens */
.add-money .account-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  text-align: left;
  row-gap: 14px;
}
.add-money .account-text { text-align: left; }
.add-money .download-list {
  display: block;
  text-align: left;
}

/* Make inline content images centered and generous */
main img {
  display: block;
  margin: 0 auto;
}
.add-money .account-visual img {
  width: min(320px, 88vw);
  margin-top: 12px;
}
.login-steps {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(18, 5, 10, 0.94), rgba(6, 2, 4, 0.9));
  text-align: left;
}
.login-steps h2 { text-align: center; }
.login-steps .container.narrow {
  text-align: left;
}
.login-steps p {
  max-width: min(72ch, 100%);
  margin: 0 0 10px;
  color: var(--muted);
  text-align: left;
}
.login-steps p:last-child {
  margin-bottom: 0;
}

.prediction-steps {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(18, 5, 10, 0.94), rgba(6, 2, 4, 0.9));
  text-align: left;
}
.prediction-steps h2 { text-align: center; margin-bottom: 12px; }
.prediction-steps .container.narrow {
  text-align: left;
}
.prediction-steps p {
  color: var(--muted);
  margin: 0 0 10px;
  max-width: min(72ch, 100%);
  text-align: left;
}
.step-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
  display: grid;
  gap: 10px;
}
.step-list li {
  background: linear-gradient(165deg, var(--card-a), var(--card-b));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--r-card-lg);
  padding: clamp(16px, 2vw, 22px) clamp(16px, 2vw, 24px);
  box-shadow: var(--shadow-card);
}
.step-list h4 { margin: 0 0 6px; }
.step-list p { margin: 0; color: var(--muted); }

.promotion-program {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(18, 5, 10, 0.94), rgba(6, 2, 4, 0.9));
  text-align: left;
}
.promotion-program h2 { text-align: center; margin-bottom: 10px; }
.promotion-program .container.narrow {
  text-align: left;
}
.promotion-program p { color: var(--muted); margin: 0 0 10px; text-align: left; max-width: min(72ch, 100%); }
.promotion-program .bullet-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 14px;
  color: var(--muted);
  max-width: min(72ch, 100%);
  text-align: left;
}
.promotion-program .bullet-list li { margin-bottom: 6px; }

.bonus-offers {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(18, 5, 10, 0.94), rgba(6, 2, 4, 0.9));
  text-align: left;
}
.bonus-offers h2 { text-align: center; margin-bottom: 10px; }
.bonus-offers .container.narrow {
  text-align: left;
}
.bonus-offers p { color: var(--muted); margin: 0 0 10px; text-align: left; max-width: min(72ch, 100%); }
.bonus-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  max-width: 920px;
  margin-inline: 0;
}
.bonus-item {
  background: linear-gradient(165deg, var(--card-a), var(--card-b));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--r-card-lg);
  padding: clamp(16px, 2vw, 22px) clamp(16px, 2vw, 24px);
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.bonus-item:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: var(--shadow-card-hover);
}
.bonus-item h3 { margin: 0 0 8px; color: var(--accent-bright); font-size: 1.05rem; }
.bonus-item p { margin: 0; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .why-like-grid > div:hover,
  .method-card:hover,
  .bonus-item:hover,
  .game-card:hover {
    transform: none;
  }
}

.safety {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(18, 5, 10, 0.94), rgba(6, 2, 4, 0.9));
  text-align: left;
}
.safety h2 { text-align: center; margin-bottom: 10px; }
.safety .container.narrow {
  text-align: left;
}
.safety p { color: var(--muted); margin: 0; text-align: left; max-width: min(72ch, 100%); }

.faq {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(18, 5, 10, 0.94), rgba(6, 2, 4, 0.92));
  text-align: left;
}
.faq h2 { text-align: center; margin-bottom: 10px; }
.faq .container.narrow {
  text-align: left;
}
.faq-list {
  display: grid;
  gap: 8px;
  max-width: 800px;
  margin-inline: auto;
}
.faq details {
  background: linear-gradient(165deg, var(--card-a), var(--card-b));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--r-card);
  padding: 14px 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.faq details[open] {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: var(--shadow-card);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  outline: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after {
  content: "▾";
  flex-shrink: 0;
  transform: rotate(0deg);
  transition: transform 150ms ease;
  color: var(--accent);
  font-size: 12px;
}
.faq details[open] summary:after { transform: rotate(180deg); }
.faq p { margin: 8px 0 0; color: var(--muted); }

@media (max-width: 960px) {
  .why-like-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .why-like-grid { grid-template-columns: 1fr; }
}

.guide-visual img { width: 100%; border-radius: 18px; border: 1px solid var(--border); box-shadow: var(--shadow); filter: saturate(0.88) hue-rotate(6deg) brightness(0.93); }

.why-bharat {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(22, 6, 12, 0.94), rgba(6, 2, 4, 0.9));
  text-align: center;
}

.why-bharat h2 { margin: 6px 0 12px; }
.why-bharat .bullets {
  margin-top: 10px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.why-bharat .bullets li { color: var(--text); text-align: left; }

.step-cards { display: grid; gap: 10px; }
.card {
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-shadow: none;
}
.card h4 { margin: 0 0 4px; }
.card p { margin: 0; }

.card .step {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: none;
  font-size: 15px;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  body { padding-top: 96px; }
  .nav-container {
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    padding: 10px 0;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy-panel {
    text-align: left;
    margin-inline: auto;
    max-width: 560px;
  }
  .hero-copy-panel p {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-actions { justify-content: center; }
  .hero-phone-frame {
    max-width: min(360px, 92vw);
    height: auto;
    min-height: 280px;
  }

  .hero-phone-frame img {
    max-height: min(58vh, 520px);
  }
}

@media (max-width: 820px) {
  .container, .nav-container, .container.narrow { width: min(960px, 94%); }
  .hero { padding: 48px 0 52px; min-height: auto; }
  .why-like-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .method-cards { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

@media (max-width: 640px) {
  body { padding-top: 88px; }
  .nav-links { font-size: 14px; gap: 10px; }
  .btn { width: 100%; }
  .nav-actions .btn { width: auto; }
  .hero-title h1 { font-size: clamp(32px, 9vw, 42px); }
  .hero-sub { font-size: 15px; margin-bottom: 18px; }
  .hero-copy-panel { padding: 18px 18px 20px; border-radius: 18px; }
  .hero-copy-panel p { font-size: 15px; }
  .hero-chips { gap: 8px; }
  .hero-chips li { font-size: 11px; padding: 6px 12px; }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-phone-frame {
    max-width: min(300px, 90vw);
    height: auto;
    min-height: 0;
  }

  .hero-phone-frame img {
    flex: none;
    max-height: min(52vh, 440px);
  }
  .why-like-grid { grid-template-columns: 1fr; }
  .account-visual img { width: min(240px, 78vw); }
  .footer-grid { gap: 16px; }
  /* stack image above text on mobile for step grids */
  .account-grid { grid-template-columns: 1fr; text-align: left; }
  .account-grid .account-text { order: 1; }
  .account-grid .account-visual { order: 2; justify-content: center; }
  .download-list { padding-left: 18px; list-style-position: outside; }
  .account-text ul { margin-top: 0; }
}

.games {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(16, 4, 8, 0.94), rgba(5, 2, 3, 0.9));
}

.games-copy {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 18px;
}

.games-copy h2 { margin: 8px 0 10px; }
.games-copy p { margin-bottom: 6px; }

.game-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.game-card {
  background: linear-gradient(165deg, var(--card-a), var(--card-b));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--r-card-lg);
  padding: clamp(16px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: var(--shadow-card-hover);
}

.game-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  filter: saturate(0.95) brightness(0.96) hue-rotate(4deg);
}

.game-card h3 {
  margin: 0;
}

.game-card p {
  margin: 0;
  color: var(--muted);
}

.advantages {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, rgba(16, 4, 8, 0.94), rgba(5, 2, 3, 0.9));
  text-align: center;
}

.advantages-grid {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.advantages h2 { margin: 6px 0 12px; }
.advantages .bullets {
  max-width: 820px;
  margin: 0 auto;
}
.advantages .bullets li { color: var(--text); text-align: left; }

/* Keep every section heading centered and the same responsive width */
h2,
.guide-copy h2,
.home h2,
.why-like h2,
.who-enjoy h2,
.download-steps h2,
.account-text h2,
.login-steps h2,
.prediction-steps h2,
.promotion-program h2,
.bonus-offers h2,
.safety h2,
.faq h2,
.why-bharat h2,
.games-copy h2,
.advantages h2 {
  width: min(760px, 92vw);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 1024px) {
  .game-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .game-cards { grid-template-columns: 1fr; }
}

.cta {
  padding: 70px 0 80px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.cta-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(22, 8, 12, 0.96), rgba(48, 16, 24, 0.92));
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.cta-card h4 { margin-bottom: 10px; }
.cta-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.cta-card li { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed var(--border); padding-bottom: 10px; }
.cta-card li span { color: var(--accent); font-weight: 700; }
.cta-card li small { color: var(--muted); }

.footer {
  background: linear-gradient(180deg, rgba(28, 6, 12, 0.96), rgba(6, 2, 4, 0.98));
  color: var(--text);
  padding: clamp(40px, 6vw, 56px) 0 clamp(24px, 4vw, 32px);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.footer a { color: var(--accent-bright); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: flex-start;
  text-align: center;
}
.footer-brand { display: flex; justify-content: center; align-items: center; }
.footer-brand .brand {
  padding: 6px 12px;
  border-radius: 14px;
}
.footer-brand .brand-logo { height: 44px; }
.footer-disclaimer h4,
.footer-links h4 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.footer-disclaimer p {
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}
.footer-links a { font-weight: 700; }
.footer-links a:hover { opacity: 0.85; }
.footer-meta {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1.4fr 1fr; }
  .footer-brand { justify-content: flex-start; }
  .footer-links { align-items: flex-end; text-align: right; }
  .footer-disclaimer { text-align: center; }
}

@media (max-width: 899px) {
  .footer-links {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }
  .footer-grid {
    justify-items: center;
  }
}

.page {
  padding: 0 0 clamp(48px, 8vw, 80px);
  background: #070305;
}
.page p { margin: 0 0 10px; }
.page p:last-child {
  margin-bottom: 0;
}
.page-hero {
  position: relative;
  text-align: center;
  padding: clamp(32px, 5vw, 52px) 0 clamp(28px, 4vw, 44px);
  margin-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.2), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(196, 30, 58, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(52, 10, 20, 0.95), rgba(8, 2, 4, 0.98) 55%, rgba(90, 18, 28, 0.5));
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: inset 0 -60px 120px rgba(0, 0, 0, 0.45);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(0, 0, 0, 0.15));
  pointer-events: none;
}
.page-hero .narrow {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.page-hero h1 {
  display: inline-block;
  margin: 0 0 12px;
  padding-bottom: 12px;
  position: relative;
}
.page-hero h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(180px, 58vw);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), #d4af37 22%, #c41e3a 78%, rgba(212, 175, 55, 0));
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.28);
}
.page-hero p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.two-col { padding: var(--section-y-sm) 0 var(--section-y); }
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
}

.panel {
  background: linear-gradient(165deg, rgba(48, 16, 24, 0.92), rgba(18, 6, 10, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-card-lg);
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-card);
}

.panel--soft {
  background: linear-gradient(165deg, rgba(52, 18, 26, 0.5), rgba(12, 4, 8, 0.82));
  border: 1px solid rgba(212, 175, 55, 0.18);
}
.panel--soft h2 {
  color: var(--accent-bright);
  text-align: left;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.panel--soft p {
  text-align: left;
  max-width: none;
}

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 14px; }
.stat-row strong { color: var(--accent); display: block; font-size: 22px; }
.stat-row span { color: var(--muted); font-size: 13px; }

.grid-cards {
  padding: var(--section-y-sm) 0 var(--section-y);
  background: linear-gradient(180deg, rgba(8, 2, 4, 0.5), rgba(6, 2, 4, 0.85));
}
.grid-cards .container {
  max-width: min(880px, 94vw);
}
.grid-cards h2 {
  margin-top: clamp(20px, 3vw, 32px);
}
.grid-cards h2:first-child {
  margin-top: 0;
}
.grid-cards p { margin-bottom: 12px; max-width: 72ch; margin-inline: auto; text-align: center; }
.grid-cards p:last-child {
  margin-bottom: 0;
}
.grid-cards h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  color: var(--accent-bright);
  text-align: center;
  width: 100%;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.grid-cards ul {
  list-style: none;
  padding: 0;
  margin: 16px auto 20px;
  max-width: 560px;
  display: grid;
  gap: 10px;
  text-align: left;
}
.grid-cards ul li {
  position: relative;
  padding: 12px 16px 12px 40px;
  border-radius: var(--r-card);
  background: linear-gradient(165deg, rgba(52, 18, 26, 0.5), rgba(14, 5, 8, 0.75));
  border: 1px solid rgba(212, 175, 55, 0.14);
  color: var(--muted);
  line-height: 1.55;
}
.grid-cards ul li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.blog-card img { border-radius: 12px 12px 0 0; width: 100%; height: 180px; object-fit: cover; filter: saturate(0.88) hue-rotate(6deg) brightness(0.93); }
.blog-card .content { padding: 12px 14px 16px; }

.contact-section { padding: 10px 0 30px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }

.contact-form { display: grid; gap: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 1px solid var(--accent); }
.contact-form label { font-weight: 600; color: var(--text); }

.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 12px; }

.page.legal > section.page {
  padding: var(--section-y-sm) 0 var(--section-y);
}
.page.legal > section.page .container.narrow h2 {
  text-align: left;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  color: var(--accent-bright);
  margin-top: clamp(26px, 3.5vw, 36px);
}
.page.legal > section.page .container.narrow h2:first-of-type {
  margin-top: 0;
}
.page.legal > section.page .container.narrow p,
.page.legal > section.page .container.narrow ul {
  text-align: left;
  margin-inline: 0;
}
.page.legal > section.page .container.narrow p {
  max-width: 72ch;
}

main.page > section.legal-body {
  padding: var(--section-y-sm) 0 var(--section-y);
}
main.page > section.legal-body .container.narrow h2 {
  text-align: left;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  color: var(--accent-bright);
  margin-top: clamp(24px, 3vw, 32px);
}
main.page > section.legal-body .container.narrow > h2:first-of-type {
  margin-top: 0;
}
main.page > section.legal-body .container.narrow p,
main.page > section.legal-body .container.narrow ul {
  text-align: left;
  max-width: 72ch;
}
main.page > section.legal-body .container.narrow h3 {
  text-align: left;
  max-width: 72ch;
}
main.page > section.legal-body .container.narrow ul:not([class]) {
  list-style: disc;
  padding-left: 1.35rem;
  margin-left: 0;
}
main.page > section.legal-body .contact-section h2 {
  text-align: left;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-top: clamp(28px, 4vw, 40px);
}

.legal-body { padding: 0 0 10px; }
.legal-body h3 { margin-bottom: 8px; }

.bullets { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.bullets li { position: relative; padding-left: 16px; color: var(--muted); }
.bullets li::before { content: '•'; position: absolute; left: 0; color: var(--accent); }

@media (max-width: 960px) {
  body { padding-top: 76px; }
  .nav-container { height: 76px; }
  .nav-links { position: absolute; top: 76px; right: 0; background: rgba(18, 4, 8, 0.97); padding: 14px 18px; border: 1px solid var(--border); border-radius: 12px; flex-direction: column; gap: 12px; display: none; margin-right: 10px; }
  .nav-links.show { display: flex; }
  .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 44px 0 48px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; max-width: 760px; }
  .cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); display: grid; }
  .pillar, .card, .panel { padding: 14px; }
  .btn { width: 100%; justify-content: center; }
}
