/*
Theme Name: M3 Online Casino
Theme URI: https://m3livevip.com
Description: Custom premium theme for M3 Online Casino Malaysia - Dark Gold Edition
Author: M3 Team
Version: 1.6
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES - M3 Brand System
   ============================================================ */
:root {
  --gold:          #d7c560;
  --gold-dark:     #c1ae4c;
  --gold-metallic: linear-gradient(135deg, #fce57e 0%, #d7c560 50%, #948434 100%);
  --gold-glow:     rgba(215, 197, 96, 0.4);
  --bg-white:      #ffffff;
  --bg-light:      #f4f4f4;
  --bg-dark:       #111111;
  --bg-panel:      #fafafa;
  --text-dark:     #1a1a1a;
  --text-light:    #ffffff;
  --text-muted:    #777777;
  --border:        #e5e5e5;
  --nav-bg:        rgba(26, 26, 26, 0.98);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm:     4px;
  --radius-md:     8px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 24px rgba(0,0,0,0.12);
  --radius:        12px;
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 145px;
}

p { font-size: 16px; margin-bottom: 1.5rem; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================================
   GLOBAL HEADER / NAVBAR
   ============================================================ */
.top-bar {
  background: var(--gold);
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10001;
}

.header-top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.site-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.auth-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login, .btn-register {
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-login {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn-login:hover {
  background: #000;
  color: #fff;
}

.btn-register {
  background: #1a1a1a;
  color: var(--gold);
}

.btn-register:hover {
  background: #000;
  color: #fff;
}

.lang-switch img {
  height: 24px;
  width: auto;
  border-radius: 50%;
  margin-left: 10px;
}

#site-header {
  position: fixed;
  top: var(--top-bar-height); left: 0; right: 0;
  z-index: 10000;
  height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-nav {
  width: 100%;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}

.site-nav li a {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  transition: var(--transition);
  opacity: 0.85;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.site-nav li a i {
  font-size: 20px;
  color: var(--gold);
}

.site-nav li a:hover,
.site-nav li.current-menu-item a {
  opacity: 1;
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}

.nav-promo a i {
  color: #2ecc71 !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-metallic);
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 4px 15px rgba(215, 197, 96, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(215, 197, 96, 0.6);
  color: #000;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: #000;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: #f4f4f4;
  padding: 8px 0;
  border-bottom: 2px solid var(--border);
  margin: 0;
}

.ticker-wrap { overflow: hidden; white-space: nowrap; }
.ticker {
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-item {
  display: inline-block;
  padding: 0 48px;
  color: var(--text-dark);
  font-size: 14px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0;
  padding: 0;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--gold);
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(208,193,90,0.15);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.hero-badge span {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   JACKPOT COUNTER
   ============================================================ */
.jackpot-band {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.jackpot-inner {
  padding: 48px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.jackpot-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-metallic);
}

.jackpot-label {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.jackpot-amount {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 56px; }

.section-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gold-metallic);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* ============================================================
   GAME CATEGORY ICONS
   ============================================================ */
.category-strip { padding: 48px 0; }

.category-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
}
.category-grid::-webkit-scrollbar { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: var(--transition);
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  padding: 32px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  min-width: 140px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.category-item::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s;
}

.category-item:hover {
.category-item:hover img { transform: scale(1.1); filter: brightness(1.1); }

.category-item span {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}
.category-item:hover span { color: var(--gold); }

/* ============================================================
   PROVIDER / GAME GRID
   ============================================================ */
.provider-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.provider-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 70%, rgba(208,193,90,0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}
.provider-card:hover::before { opacity: 1; }

.provider-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-gold);
}

.provider-card img {
  width: 100%;
  height: 180px;
  padding: 16px;
  object-fit: contain;
  transition: var(--transition);
  display: block;
  background: rgba(255,255,255,0.02);
}
.provider-card:hover img { transform: scale(1.05); }

.provider-card-name {
  padding: 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-align: center;
  background: var(--bg-light);
}

/* ============================================================
   ABOUT / CONTENT SECTIONS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(208,193,90,0.15);
  pointer-events: none;
}

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(208,193,90,0.2), rgba(208,193,90,0.05));
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.feature-text h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.feature-text p { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--bg-panel), #0d0d1e);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.stat-item .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { background: var(--bg-light); padding: 80px 0; }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.video-card:hover { border-color: var(--border-bright); box-shadow: var(--shadow-gold); }

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-card-body { padding: 20px; }
.video-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.video-card-sub { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   PROMO CARDS
   ============================================================ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.promo-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.promo-card img { width: 100%; height: auto; object-fit: contain; }
.promo-card-body { padding: 20px; }
.promo-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.promo-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(208,193,90,0.15);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   SPONSORSHIP PAGE
   ============================================================ */
.sponsor-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.sponsor-profile {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}

.sponsor-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border-bright);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), var(--shadow-gold);
}

.sponsor-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  padding: 32px 24px 20px;
  text-align: center;
}
.sponsor-name {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
}
.sponsor-role { font-size: 13px; color: var(--text-muted); }

.sponsor-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.info-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.info-label { font-size: 11px; color: var(--text-dim); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.info-value { font-size: 15px; font-weight: 600; color: var(--text-white); }

.story-timeline { margin: 40px 0; }
.timeline-item {
  position: relative;
  padding: 0 0 32px 32px;
  border-left: 2px solid var(--border);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px; top: 8px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-glow);
}
.timeline-era {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.timeline-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   GLOBAL FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-brand img {
  max-height: 100px;
  width: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 12px var(--gold-glow)) brightness(1.2);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }

.footer-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { color: var(--text-dim); font-size: 13px; }

.footer-badges { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   FLOATING SUPPORT BUTTON
   ============================================================ */
.float-support {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  text-decoration: none;
  border: 2px solid transparent;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn-whatsapp { background: #25D366; color: #fff; }
.float-btn-whatsapp:hover { color: #fff; background: #20b356; }
.float-btn-livechat { background: var(--gold); color: #000; }
.float-btn-livechat:hover { color: #000; background: var(--gold-light); }

/* ============================================================
   CONTENT PAGE LAYOUT (Casino, Slots, etc.)
   ============================================================ */
.inner-page-hero {
  padding: calc(var(--nav-height) + 48px) 0 48px;
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
}

.ticker-item {
  display: inline-block;
  padding: 0 48px;
  color: var(--text-dark);
  font-size: 14px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

.page-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-title .gold { color: var(--gold); }

.page-desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 700px;
  line-height: 1.8;
}

/* ============================================================
   RICH TEXT CONTENT
   ============================================================ */
.rich-content h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-white);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.rich-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin: 32px 0 12px;
}
.rich-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; font-size: 15px; }
.rich-content ul { margin: 16px 0 20px 0; display: flex; flex-direction: column; gap: 8px; }
.rich-content li {
  display: flex;
  gap: 10px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.rich-content li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(208,193,90,0.08), rgba(208,193,90,0.03));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
}
.highlight-box h3 { color: var(--gold); margin-top: 0; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

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

.footer-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
  position: relative;
}

.footer-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.app-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-btn {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.app-btn i {
  font-size: 18px;
}

.app-btn:hover {
  background: var(--gold);
  color: #000;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.footer-trust {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-row span {
  font-weight: 700;
  font-size: 14px;
}

.trust-icons {
  display: flex;
  gap: 15px;
  font-size: 24px;
  color: var(--text-dim);
}

.footer-seo {
  margin-bottom: 48px;
}

.footer-seo h1 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-seo p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; position: relative; z-index: 10001; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  
  .site-nav { 
    display: none !important; 
    flex-direction: column !important; 
    position: fixed; 
    top: calc(var(--nav-height) + var(--top-bar-height)); 
    left: 0; right: 0; bottom: 0;
    background: var(--bg-white) !important; 
    border-top: 1px solid var(--border); 
    padding: 32px 24px; 
    gap: 16px;
    z-index: 10000 !important;
    align-items: center !important;
    justify-content: flex-start !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  
  .site-nav.open { 
    display: flex !important; 
  }
  
  .site-nav ul, .site-nav div > ul {
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px !important;
  }
  
  .site-nav li a { 
    color: var(--text-dark) !important;
    font-size: 16px !important; 
    font-weight: 700 !important;
    padding: 15px 20px !important; 
    text-align: left !important; 
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    border-bottom: 1px solid var(--border); 
    width: 100%;
  }
  
  .site-nav li a i {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
  }
  
  .site-nav li { width: 100% !important; margin: 0 !important; }
  .site-nav li a { font-size: 18px !important; padding: 16px !important; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }

  .nav-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
  
  .footer-main { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-badges { justify-content: center; }

  .provider-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .video-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 24px; }
  .hero-title { font-size: 44px; }
  .section-pad { padding: 56px 0; }

  .promo-card img { height: auto !important; max-height: 200px; }
}
