/* =========================================================
   PHARAOH GOLD QUEST — Promo Website Styles
   Royal Purple · Egyptian Gold · Lapis Blue · Sandstone Cream
   Cinzel display · Lora body
   ========================================================= */

:root {
  /* Brand */
  --royal-purple: #5C3A8B;
  --royal-purple-dark: #3F2566;
  --royal-purple-glow: #7752A8;
  --egyptian-gold: #D9A957;
  --egyptian-gold-bright: #E5B847;
  --burnished-gold: #A87E36;
  --lapis: #22467E;
  --lapis-glow: #3A6BB8;
  --carnelian: #B43B36;
  --reed-green: #5C8A4A;
  --amber: #C97A2A;

  /* Surfaces */
  --sandstone: #E8DCC0;
  --papyrus: #D6C7A4;
  --papyrus-light: #EFE4CA;
  --temple-night: #1B1230;     /* very dark royal purple page bg */
  --temple-deeper: #0F0820;
  --temple-stone: #2A1E48;
  --temple-divider: #3F2A6033;

  /* Text */
  --cream: #F5EBD3;
  --cream-warm: #EFE4CA;
  --bronze-deep: #3B2818;
  --bronze-muted: #6E5640;
  --bronze-faded: #9C8466;
  --text-on-dark: #F5EBD3;
  --text-on-dark-muted: #D8CBA8;
  --text-on-dark-faded: #9C8466;

  /* Fonts */
  --font-display: 'Cinzel', 'Cinzel Decorative', Georgia, serif;
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;

  --max-w: 1200px;
  --radius-card: 14px;
  --radius-btn: 10px;

  --grad-cta: linear-gradient(165deg, #5C3A8B 0%, #22467E 100%);
  --grad-gold: linear-gradient(90deg, #A87E36 0%, #D9A957 50%, #E5B847 100%);
  --grad-gold-text: linear-gradient(90deg, #E5B847 0%, #F5EBD3 50%, #D9A957 100%);
  --grad-temple-fade: linear-gradient(180deg, #1B1230 0%, #0F0820 100%);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--temple-deeper);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--egyptian-gold); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--egyptian-gold-bright); }

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

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--cream);
  margin: 0;
}

.t-eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--egyptian-gold);
  margin-bottom: 14px;
}

.accent { color: var(--egyptian-gold); font-style: italic; font-weight: 700; }
.accent-lapis { color: var(--lapis-glow); }
.accent-cream { color: var(--cream); }

.gold-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.outlined-gold {
  -webkit-text-stroke: 1.5px var(--egyptian-gold);
  color: transparent;
}

/* Hieroglyph frieze — thin gold-on-stone horizontal band */
.frieze {
  position: relative;
  height: 8px;
  margin: 18px auto;
  max-width: 180px;
  background: var(--grad-gold);
  border-radius: 2px;
  opacity: 0.55;
}
.frieze::before, .frieze::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--egyptian-gold);
  box-shadow: 0 0 12px rgba(217,169,87,0.6);
}
.frieze::before { left: -16px; }
.frieze::after  { right: -16px; }

/* Divider — a flat hieroglyph-style horizontal */
.divider-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 16px;
}
.divider-glyph .line {
  height: 2px;
  width: 70px;
  background: linear-gradient(90deg, transparent, var(--egyptian-gold), transparent);
}
.divider-glyph .glyph {
  color: var(--egyptian-gold);
  font-size: 22px;
  filter: drop-shadow(0 0 8px rgba(217,169,87,0.45));
  line-height: 1;
}

/* ---------- Top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(27, 18, 48, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--temple-divider);
}

.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(217,169,87,0.5), 0 8px 22px rgba(63,37,102,0.6);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 19px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.nav-links a:hover { color: var(--egyptian-gold); }

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--cream);
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 12px;
    background: var(--temple-stone);
    border: 1px solid var(--temple-divider);
    border-radius: 14px;
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15,8,32,0.58) 0%, rgba(15,8,32,0.92) 100%),
    var(--grad-temple-fade);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.webp');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.45;
  z-index: 0;
  filter: contrast(1.05) saturate(1.08);
}

.hero::after {
  /* Sun-disc glow + lapis shadow */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 360px at 78% 18%, rgba(229,184,71,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 15% 85%, rgba(34,70,126,0.30) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 84px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(217, 169, 87, 0.12);
  border: 1px solid rgba(217, 169, 87, 0.45);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--egyptian-gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--egyptian-gold);
  box-shadow: 0 0 12px var(--egyptian-gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 92px);
  line-height: 1.04;
  letter-spacing: 2px;
  margin: 0 0 22px 0;
  font-weight: 700;
  color: var(--cream);
  text-shadow: 0 6px 32px rgba(63,37,102,0.6);
}

.hero-title .row { display: block; }
.hero-title .row.italic { font-style: italic; font-weight: 500; color: var(--egyptian-gold); }
.hero-title .row.outline { -webkit-text-stroke: 1.5px var(--egyptian-gold); color: transparent; }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-on-dark-muted);
  max-width: 640px;
  margin: 0 0 36px 0;
  text-align: left;
  font-style: italic;
  line-height: 1.6;
}
.hero-sub strong { color: var(--cream); font-style: normal; font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.compliance-stripe {
  margin-top: 38px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(34, 70, 126, 0.18);
  border: 1px solid rgba(58, 107, 184, 0.5);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.compliance-stripe svg { color: var(--lapis-glow); flex-shrink: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  min-height: 52px;
}

.btn-primary {
  background: var(--grad-cta);
  color: var(--cream);
  box-shadow: 0 8px 28px rgba(63, 37, 102, 0.55), inset 0 1px 0 rgba(255,255,255,0.18);
  border: 1px solid rgba(217,169,87,0.3);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); color: var(--cream); box-shadow: 0 12px 36px rgba(63, 37, 102, 0.7), inset 0 1px 0 rgba(255,255,255,0.22); }

.btn-gold {
  background: var(--grad-gold);
  color: var(--bronze-deep);
  box-shadow: 0 8px 26px rgba(217, 169, 87, 0.42), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.07); color: var(--bronze-deep); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(217,169,87,0.55);
}
.btn-ghost:hover { border-color: var(--egyptian-gold); color: var(--egyptian-gold); background: rgba(217,169,87,0.06); }

/* ---------- Sections ---------- */

section.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(34px, 5.4vw, 56px);
  letter-spacing: 1.5px;
  margin: 0 0 8px;
  color: var(--cream);
  font-weight: 700;
}

.section-head p {
  max-width: 700px;
  margin: 14px auto 0;
  color: var(--text-on-dark-muted);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
}

/* ---------- "No betting" compliance banner ---------- */

.no-betting-banner {
  background:
    linear-gradient(135deg, rgba(34,70,126,0.20) 0%, rgba(217,169,87,0.10) 100%),
    var(--temple-stone);
  border: 2px solid var(--egyptian-gold);
  border-radius: 18px;
  padding: 32px 28px;
  margin: 0 auto;
  max-width: 920px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  box-shadow: 0 0 0 6px rgba(217,169,87,0.08), 0 16px 50px rgba(0,0,0,0.5);
  position: relative;
}

.no-betting-banner .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(217,169,87,0.16);
  border: 1.5px solid var(--egyptian-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--egyptian-gold);
}

.no-betting-banner .body { flex: 1; min-width: 240px; }
.no-betting-banner .body .label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--egyptian-gold);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
}
.no-betting-banner .body h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 38px);
  letter-spacing: 1px;
  color: var(--cream);
  margin: 0 0 10px;
  font-weight: 700;
}
.no-betting-banner .body p {
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- Stat strip ---------- */

.stat-strip {
  background:
    linear-gradient(135deg, rgba(217,169,87,0.08) 0%, rgba(34,70,126,0.10) 100%),
    var(--temple-deeper);
  padding: 56px 0;
  border-top: 1px solid var(--temple-divider);
  border-bottom: 1px solid var(--temple-divider);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 58px);
  color: var(--egyptian-gold);
  letter-spacing: 1px;
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 0 24px rgba(217,169,87,0.35);
}
.stat .num.lapis { color: var(--lapis-glow); text-shadow: 0 0 24px rgba(58, 107, 184, 0.4); }
.stat .num.cream { color: var(--cream); text-shadow: none; }
.stat .lbl {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: 12px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 18px; }
}

/* ---------- Features grid ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(42,30,72,0.92) 0%, rgba(27,18,48,0.96) 100%);
  border: 1px solid var(--temple-divider);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217,169,87,0.55);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}
.feature-card:hover::before { opacity: 1; }

.feature-card .ico {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 169, 87, 0.14);
  border: 1px solid rgba(217, 169, 87, 0.45);
  color: var(--egyptian-gold);
  margin-bottom: 18px;
  font-size: 24px;
}
.feature-card.alt .ico {
  background: rgba(34, 70, 126, 0.18);
  border-color: rgba(58, 107, 184, 0.5);
  color: var(--lapis-glow);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  letter-spacing: 0.8px;
  margin: 0 0 10px;
  color: var(--cream);
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- Pentad ---------- */

.pentad-section {
  background:
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(63,37,102,0.4) 0%, transparent 70%),
    var(--temple-deeper);
  position: relative;
}

.pentad-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.pentad-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--temple-stone);
  border: 2px solid var(--egyptian-gold-bright);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55), 0 0 28px rgba(217,169,87,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pentad-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.65), 0 0 38px rgba(229,184,71,0.35); }

.pentad-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.pentad-card .label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15,8,32,0.92) 60%);
  padding: 30px 12px 12px;
  text-align: center;
}
.pentad-card .label .name {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1.2px;
  color: var(--cream);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.pentad-card .label .domain {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--egyptian-gold);
  margin-top: 4px;
  display: block;
}

@media (max-width: 920px) {
  .pentad-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .pentad-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Rank ladder ---------- */

.rank-ladder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px auto 0;
  max-width: 980px;
}

.rank-pill {
  position: relative;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: var(--text-on-dark-muted);
  border: 1.5px solid rgba(217, 169, 87, 0.35);
  transition: all 0.25s ease;
}
.rank-pill .num {
  display: inline-block;
  color: var(--egyptian-gold);
  margin-right: 8px;
  font-size: 12px;
  opacity: 0.7;
}
.rank-pill.active {
  background: var(--royal-purple);
  color: var(--cream);
  border-color: var(--egyptian-gold);
  box-shadow: 0 0 18px rgba(217,169,87,0.45);
}
.rank-pill.divine {
  background: var(--grad-gold);
  color: var(--bronze-deep);
  border-color: var(--egyptian-gold-bright);
  box-shadow: 0 0 24px rgba(229,184,71,0.55);
}

/* ---------- Screenshots Swiper ---------- */

.screens-wrap {
  position: relative;
  padding: 0 8px;
}

.screen-frame {
  width: 240px;
  max-width: 60vw;
  aspect-ratio: 1260 / 2736;
  margin: 0 auto;
  background: #100820;
  border-radius: 32px;
  padding: 10px;
  border: 1.5px solid var(--temple-divider);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(217, 169, 87, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}

.screen-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  background: #000;
  border-radius: 4px;
  z-index: 2;
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.swiper { padding: 30px 0 50px; }
.swiper-pagination-bullet { background: var(--text-on-dark-faded); opacity: 0.65; }
.swiper-pagination-bullet-active { background: var(--egyptian-gold); opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: var(--egyptian-gold); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 22px; font-weight: 800; }

.screen-caption {
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  font-weight: 500;
}

/* ---------- Oracle quote / Atmosphere ---------- */

.oracle-card {
  background:
    linear-gradient(180deg, rgba(217,169,87,0.06) 0%, var(--temple-stone) 100%);
  border: 1.5px solid var(--egyptian-gold);
  border-radius: 18px;
  padding: 40px 36px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}
.oracle-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--egyptian-gold);
  line-height: 1;
  opacity: 0.45;
}

.oracle-card .stamp {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(217,169,87,0.14);
  border: 1.5px solid var(--egyptian-gold);
  color: var(--egyptian-gold);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 18px;
}

.oracle-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: 1px;
  margin: 0 0 14px;
  color: var(--cream);
  font-weight: 700;
}

.oracle-card .verbatim {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--egyptian-gold);
  letter-spacing: 0.5px;
  margin: 20px 0;
  padding: 20px 24px;
  background: rgba(217,169,87,0.07);
  border-left: 3px solid var(--egyptian-gold);
  border-radius: 0 12px 12px 0;
  line-height: 1.55;
}

.oracle-card .body-text {
  color: var(--text-on-dark-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.oracle-card .body-text strong { color: var(--cream); font-weight: 600; }

/* ---------- AI disclosure strip ---------- */

.ai-strip {
  margin-top: 40px;
  background: var(--temple-deeper);
  border: 1px dashed rgba(217,169,87,0.4);
  border-radius: 14px;
  padding: 20px 26px;
  color: var(--text-on-dark-muted);
  font-size: 15px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  line-height: 1.6;
}

.ai-strip .ico-ai {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,169,87,0.12);
  border: 1px solid rgba(217,169,87,0.45);
  color: var(--egyptian-gold);
}
.ai-strip strong { color: var(--cream); }

/* ---------- CTA section ---------- */

.cta-section {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--temple-deeper) 0%, #07041A 100%);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 480px at 50% 40%, rgba(217,169,87,0.25) 0%, transparent 60%);
  pointer-events: none;
}

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

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 80px);
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.05;
}
.cta-section h2 .stroke {
  -webkit-text-stroke: 2px var(--egyptian-gold);
  color: transparent;
  font-style: italic;
}

.cta-section p {
  color: var(--text-on-dark-muted);
  font-size: 18px;
  font-style: italic;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* ---------- Page hero (legal/contact) ---------- */

.page-hero {
  padding: 96px 0 56px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(217,169,87,0.16) 0%, transparent 65%),
    linear-gradient(180deg, var(--temple-night), var(--temple-deeper));
  text-align: center;
  border-bottom: 1px solid var(--temple-divider);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: 2px;
  color: var(--cream);
  font-weight: 700;
}

.page-hero .sub {
  margin: 18px auto 0;
  color: var(--text-on-dark-muted);
  font-size: 17px;
  font-style: italic;
  max-width: 640px;
}

/* ---------- Legal content ---------- */

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
}

.legal-content .meta {
  display: inline-block;
  font-family: var(--font-heading);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--egyptian-gold);
  margin-bottom: 28px;
  font-weight: 500;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin: 40px 0 14px;
  color: var(--cream);
  letter-spacing: 1px;
  font-weight: 600;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  margin: 26px 0 10px;
  color: var(--cream);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.legal-content p, .legal-content ul, .legal-content ol {
  margin: 0 0 14px;
  text-align: left;
}
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--cream); font-weight: 600; }
.legal-content em { color: var(--text-on-dark); }
.legal-content a { color: var(--egyptian-gold); text-decoration: underline; text-decoration-color: rgba(217,169,87,0.4); }
.legal-content a:hover { color: var(--egyptian-gold-bright); text-decoration-color: var(--egyptian-gold-bright); }

/* ---------- Contact ---------- */

.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.contact-card {
  background: var(--temple-stone);
  border: 1px solid var(--temple-divider);
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-on-dark-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.field input, .field textarea {
  width: 100%;
  background: var(--temple-deeper);
  border: 1px solid var(--temple-divider);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-on-dark-faded); }
.field input:focus, .field textarea:focus {
  border-color: var(--egyptian-gold);
  box-shadow: 0 0 0 3px rgba(217,169,87,0.18);
}
.field textarea { min-height: 140px; resize: vertical; }

.contact-info {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--temple-divider);
  color: var(--text-on-dark-muted);
  font-size: 14px;
  text-align: center;
}

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

/* ---------- Footer ---------- */

footer {
  background: #07041A;
  border-top: 1px solid var(--temple-divider);
  padding: 64px 0 30px;
  color: var(--text-on-dark-muted);
  font-size: 14.5px;
}

footer .inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

footer h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 14px;
  font-weight: 600;
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: var(--text-on-dark-muted); }
footer a:hover { color: var(--egyptian-gold); }

footer .col-brand p {
  margin: 14px 0 0;
  max-width: 320px;
  line-height: 1.6;
  font-style: italic;
}

.compliance-footer {
  border-top: 1px solid var(--temple-divider);
  padding-top: 22px;
  margin-top: 12px;
  color: var(--text-on-dark-faded);
  font-size: 13px;
  text-align: center;
  line-height: 1.75;
}
.compliance-footer .strong {
  color: var(--cream);
  font-weight: 600;
}

footer .legal {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-on-dark-faded);
}

@media (max-width: 800px) {
  footer .inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  footer .inner { grid-template-columns: 1fr; }
}

/* ---------- Privacy acceptance button ---------- */

.privacy-accept-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 16px 22px;
  background: linear-gradient(180deg, rgba(7,4,26,0) 0%, #07041A 38%);
  display: flex;
  justify-content: center;
}
.privacy-accept-btn.hidden { display: none; }

.accept-btn {
  width: 100%;
  max-width: 440px;
  min-height: 56px;
  border: 1px solid rgba(217,169,87,0.3);
  background: var(--grad-cta);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(63,37,102,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 0 24px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.accept-btn:hover { transform: translateY(-1px); filter: brightness(1.1); }

/* ---------- Utility ---------- */

.section-bg-alt { background: linear-gradient(180deg, var(--temple-night) 0%, var(--temple-deeper) 100%); }
.muted { color: var(--text-on-dark-muted); }
.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--temple-divider);
  color: var(--text-on-dark-muted);
  margin: 4px 4px 4px 0;
}
.tag-pill.gold { color: var(--egyptian-gold); border-color: rgba(217,169,87,0.45); background: rgba(217,169,87,0.08); }
.tag-pill.lapis { color: var(--lapis-glow); border-color: rgba(58,107,184,0.45); background: rgba(34,70,126,0.10); }

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  section.section { padding: 70px 0; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .no-betting-banner { padding: 24px 20px; }
  .oracle-card { padding: 26px 22px; }
  .contact-card { padding: 28px 22px; }
  .legal-content { padding: 44px 16px 80px; }
  .rank-pill { font-size: 11px; padding: 10px 16px; letter-spacing: 1.4px; }
}
