:root {
  --bg: #f5f7f8;        
  --bg-alt: #ebedf0;    
  --text: #0f172a;      
  --text-muted: #475569;
  --text-dim: #64748b;  
  
  --accent: #0f766e;      
  --accent-dark: #115e59; 
  --secondary: #e2e8f0;
  --card-bg: #ffffff; 
  --border: #cbd5e1;  
  
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", Times, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden; /* Global horizontal scroll fix */
  width: 100%;
}

body {
  font-family: var(--sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: #c291cb; text-decoration: none; }
a:hover { color: #a14011; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--sans); }

h1, h2, h3, h4, h5, h6 {
  border-left: none !important;
  padding-left: 0 !important;
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.reading { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 700px; margin: 0 auto; padding: 0 20px; }

/* Ticker */
.announce { background: var(--secondary); border-bottom: 1px solid var(--border); padding: 8px 0; overflow: hidden; }
.ticker { display: flex; white-space: nowrap; }
.ticker span { margin-right: 30px; font-size: 14px; color: var(--text-muted); font-weight: 500; }
.ck { color: #c291cb; display: inline-flex; align-items: center; gap: 4px; }
.ck svg { width: 12px; height: 12px; }

/* Header */
.header { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 60px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo-img { height: 35px; width: auto; }
.nav { display: none; }
.head-actions { display: flex; gap: 10px; align-items: center; }
.btn-wa { background: #25D366; color: #fff; padding: 8px 14px; border-radius: 4px; font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; text-decoration: none; }
.btn-wa svg { width: 18px; height: 18px; }
.icon-btn { background: none; border: 1px solid var(--border); color: var(--text); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.icon-btn svg { width: 20px; height: 20px; }

/* Hero */
.hero { background: var(--bg-alt); padding: 60px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.hero-video { display: none; }
.hero-scanlines { display: none; }
.hero-inner { max-width: 900px; margin: 0 auto; }
.trust-pill { background: var(--secondary); display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 20px; font-size: 13px; color: #c291cb; margin-bottom: 20px; font-weight: 600; border: 1px solid var(--border); }
.live-dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; display: inline-block; }
.hero h1 { font-size: 36px; margin-bottom: 20px; }
.it { color: #c291cb; font-style: italic; }
.lede { font-size: 16px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; }

.btn { padding: 12px 24px; border-radius: 4px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; border: none; }
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: #c291cb; color: #000; }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-pink { background: var(--secondary); color: #c291cb; border: 1px solid #c291cb; }
.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 20px; margin-top: 30px; border-top: 1px solid var(--border); padding-top: 30px; }
.s { text-align: center; }
.num { font-size: 24px; font-weight: 800; color: #c291cb; }
.lab { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.avatar-stack { display: none; }
.scroll-hint { display: none; }

/* Chips */
.chips-wrap { background: var(--bg); border-bottom: 1px solid var(--border); padding: 15px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.chips { display: flex; gap: 10px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.chip { background: var(--secondary); border: 1px solid var(--border); color: var(--text-muted); padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; white-space: nowrap; display: flex; align-items: center; gap: 6px; text-decoration: none; cursor: pointer; }
.chip.is-active { background: #c291cb; color: #000; border-color: #c291cb; }
.chip svg { width: 14px; height: 14px; }

/* Sections */
.band { padding: 60px 0; background: var(--bg); }
.band-alt { padding: 60px 0; background: var(--bg-alt); }
.section-head { margin-bottom: 40px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.section-head.center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
.eyebrow { color: #c291cb; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.section-title { font-size: 28px; font-style: normal; }
.section-sub { color: var(--text-muted); font-size: 15px; margin-top: 10px; max-width: 600px; }
.section-link { color: #c291cb; font-weight: 600; font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 4px; white-space: nowrap; }

/* Manifesto */
.manifesto { display: grid; gap: 30px; }
.man-item { display: flex; gap: 20px; padding: 25px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; }
.man-item .num { font-size: 32px; font-weight: 900; color: var(--text-dim); line-height: 1; min-width: 50px; }
.man-item h3 { font-size: 18px; margin-bottom: 8px; }
.man-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Profile Grid */
.profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; text-decoration: none; color: var(--text); display: block; }
.photo { position: relative; }
.photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background-color: var(--secondary); }
.badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; }
.badge { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; }
.badge.verified { background: #2563eb; color: #fff; }
.badge.vip { background: #c291cb; color: #000; }
.badge.new { background: #10b981; color: #fff; }
.badge.hot { background: #ef4444; color: #fff; }
.badge.elite { background: #8b5cf6; color: #fff; }
.fav { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.5); border: none; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.fav svg { width: 16px; height: 16px; }
.fav.on svg { fill: #ef4444; stroke: #ef4444; }
.name-block { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.9)); padding: 30px 15px 15px; display: flex; justify-content: space-between; align-items: flex-end; }
.nm { font-weight: 700; font-size: 16px; color: #fff; }
.meta { font-size: 12px; color: #ccc; }
.age-pill { background: #c291cb; color: #000; font-size: 12px; font-weight: 800; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.card-num { display: none; }
.info { padding: 15px; }
.meta-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.star { width: 14px; height: 14px; color: #c291cb; }
.rate { color: #c291cb; font-weight: 700; }
.sep { width: 3px; height: 3px; background: var(--text-dim); border-radius: 50%; display: inline-block; }
.price { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.frm { font-size: 12px; font-weight: 400; color: var(--text-dim); margin-right: 4px; font-family: var(--sans); }
.card-wa { width: 100%; background: #25D366; color: #fff; border: none; padding: 10px; border-radius: 4px; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.card-wa svg { width: 18px; height: 18px; }
.view-all-row { text-align: center; margin-top: 40px; }
.btn-outline { border: 1px solid #c291cb; color: #c291cb; padding: 12px 30px; border-radius: 4px; font-weight: 700; text-decoration: none; display: inline-block; }

/* Editorial */
.editorial { display: grid; gap: 40px; align-items: center; }
.editorial-text h2 { font-size: 26px; margin-bottom: 15px; }
.editorial-text p { font-size: 15px; color: var(--text-muted); margin-bottom: 15px; line-height: 1.7; }
.dropcap-p::first-letter { font-size: 3em; float: left; line-height: 1; margin-right: 8px; color: #c291cb; font-weight: 700; }
.editorial-img { background: var(--secondary); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; min-height: 300px; display: flex; flex-direction: column; justify-content: center; padding: 30px; position: relative; }
.corner-tag { position: absolute; top: 15px; right: 15px; background: #c291cb; color: #000; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 3px; }
.ed-content { text-align: center; z-index: 2; }
.ed-mark { width: 60px; margin: 0 auto 20px; }
.ed-mark svg { width: 100%; }
.ed-tagline { color: var(--text-muted); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
.ed-headline { font-size: 48px; font-weight: 900; color: var(--text); }
.ed-year { color: #c291cb; }
.ed-divider { height: 1px; background: var(--border); margin: 20px 0; }
.ed-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ed-num { font-size: 22px; font-weight: 800; color: #c291cb; display: block; }
.ed-star { color: #c291cb; font-size: 14px; }
.ed-lab { font-size: 11px; color: var(--text-dim); text-transform: uppercase; line-height: 1.4; }
.ed-quote { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--text); margin-bottom: 5px; }
.ed-byline { font-size: 12px; color: var(--text-dim); }

/* Banner Strip */
.banner-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.banner-strip a { position: relative; text-decoration: none; border-radius: 4px; overflow: hidden; }
.banner-strip img { width: 100%; height: 200px; object-fit: cover; }
.cap { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.7); color: #fff; padding: 8px 12px; font-size: 13px; font-weight: 600; }

/* Counter & Ribbon */
.verified-ribbon { background: #c291cb; color: #000; text-align: center; padding: 12px; font-weight: 800; font-size: 14px; margin: 30px 0; border-radius: 4px; }
.counter-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; text-align: center; }
.counter-strip .n { font-size: 28px; font-weight: 900; color: var(--text); }
.counter-strip .l { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

/* Cinema */
.cinema-block { background: var(--bg-alt); padding: 80px 20px; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.timer { font-size: 64px; font-weight: 900; color: #c291cb; margin: 10px 0; font-family: var(--sans); }
.timer-label { color: var(--text-dim); font-size: 13px; display: block; margin-bottom: 20px; }
.cinema-block h2 { font-size: 28px; margin-bottom: 15px; }
.cinema-block p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Locality */
.locality-marquee { overflow: hidden; margin-top: 40px; padding: 15px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.track { display: flex; white-space: nowrap; animation: marquee 20s linear infinite; }
.track span { margin-right: 30px; font-weight: 700; color: var(--text-dim); font-size: 18px; text-transform: uppercase; }
.track .sep { color: #c291cb; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Runners / Top Ranked */
.tr-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; flex-wrap: wrap; gap: 20px; }
.gallery-cta { background: #c291cb; color: #000; padding: 10px 20px; border-radius: 4px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.gallery-cta svg { width: 18px; height: 18px; }
.runners-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.rh-eb { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text-muted); font-size: 14px; }
.rh-eb svg { width: 16px; height: 16px; color: #c291cb; }
.rh-nav { display: flex; gap: 10px; }
.rh-nav button { background: var(--secondary); border: 1px solid var(--border); color: var(--text); width: 30px; height: 30px; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.rh-nav svg { width: 16px; height: 16px; }
.runners { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.runner { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; text-decoration: none; color: var(--text); }
.runner.is-champion { border-color: #c291cb; }
.champion-tag { background: #c291cb; color: #000; text-align: center; padding: 8px; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 6px; }
.champion-tag svg { width: 14px; height: 14px; }
.runner-photo { position: relative; }
.runner-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.rk-num { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.6); color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; border: 1px solid var(--border); }
.rk-num.gold { background: #c291cb; color: #000; border-color: #c291cb; }
.rk-fav { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.5); border: none; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.rk-fav svg { width: 14px; height: 14px; }
.rk-fav.on svg { fill: #ef4444; stroke: #ef4444; }
.runner-info { padding: 12px; }
.runner-info .nm { font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 6px; }
.runner-info .loc { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.runner-info .loc svg { width: 12px; height: 12px; color: #c291cb; }
.runner-foot { display: flex; justify-content: space-between; align-items: center; padding: 0 12px 12px; font-size: 12px; }
.rt { display: flex; align-items: center; gap: 4px; color: #c291cb; font-weight: 700; }
.rt svg { width: 12px; height: 12px; }
.tier-pill { background: var(--secondary); border: 1px solid var(--border); padding: 3px 8px; border-radius: 3px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.tier-pill svg { width: 10px; height: 10px; color: #c291cb; }
.vw { color: var(--text-dim); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.vw svg { width: 12px; height: 12px; }
.tr-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 30px; }
.ti { background: var(--card-bg); border: 1px solid var(--border); padding: 15px; border-radius: 4px; display: flex; align-items: center; gap: 12px; }
.ti .ic svg { width: 24px; height: 24px; color: #c291cb; }
.tl { font-weight: 700; font-size: 14px; display: block; }
.ts { font-size: 12px; color: var(--text-muted); }

/* Map & Locations */
.map-frame { position: relative; background: #000; border-radius: 4px; overflow: hidden; }
.map-frame video { width: 100%; opacity: 0.5; }
.map-pin { display: none; }
.loc-rail { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; }
.lcard { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; text-decoration: none; color: var(--text); }
.lcard img { width: 100%; height: 120px; object-fit: cover; }
.lcard .info { padding: 10px; }
.lcard .place { font-weight: 700; font-size: 15px; }
.lcard .meta { font-size: 12px; color: var(--text-muted); }

/* Roster */
.roster-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.roster-card { background: var(--card-bg); border: 1px solid var(--border); padding: 25px; border-radius: 4px; text-decoration: none; color: var(--text); position: relative; }
.roster-num { font-size: 40px; font-weight: 900; color: var(--text-dim); opacity: 0.2; position: absolute; top: 10px; right: 15px; }
.roster-ico { margin-bottom: 15px; }
.roster-ico svg { width: 28px; height: 28px; color: #c291cb; }
.roster-card h3 { font-size: 18px; margin-bottom: 10px; }
.roster-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; line-height: 1.5; }
.roster-tag { background: var(--secondary); border: 1px solid var(--border); padding: 4px 10px; border-radius: 3px; font-size: 11px; font-weight: 700; color: #c291cb; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.ts-card { background: var(--card-bg); border: 1px solid var(--border); padding: 20px; border-radius: 4px; }
.ts-stars { display: flex; gap: 2px; margin-bottom: 12px; color: #c291cb; }
.ts-stars svg { width: 16px; height: 16px; }
.ts-card blockquote { font-style: italic; font-size: 14px; color: var(--text-muted); margin-bottom: 15px; line-height: 1.6; }
.ts-card figcaption { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.av-mono { background: var(--secondary); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #c291cb; }
.who { font-weight: 700; color: var(--text); display: block; }
.when { color: var(--text-dim); font-size: 11px; }

/* Flag List */
.flag-list { margin-top: 30px; display: grid; gap: 15px; }
.flag-list li { background: var(--card-bg); border: 1px solid var(--border); padding: 15px; border-radius: 4px; display: flex; align-items: center; gap: 15px; list-style: none; }
.flag { background: var(--secondary); border: 1px solid var(--border); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; color: #c291cb; flex-shrink: 0; }
.flag-list strong { display: block; margin-bottom: 4px; color: var(--text); }
.flag-list div { font-size: 13px; color: var(--text-muted); flex-grow: 1; }
.status { background: #10b981; color: #fff; padding: 3px 8px; border-radius: 3px; font-size: 11px; font-weight: 700; white-space: nowrap; }

/* Facilities / Loyalty */
.loyalty-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-top: 30px; }
.loyalty-card-head { background: var(--secondary); padding: 15px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.lc-title { font-weight: 800; color: #c291cb; font-size: 16px; }
.lc-meta { font-size: 12px; color: var(--text-dim); }
.fac-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 20px; }
.fac { display: flex; align-items: flex-start; gap: 12px; }
.fac .ic { flex-shrink: 0; margin-top: 2px; }
.fac .ic svg { width: 20px; height: 20px; color: #c291cb; }
.fac .tx { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Price Cards */
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.price-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; padding: 25px; position: relative; }
.price-card.hero { border-color: #c291cb; }
.pc-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #c291cb; color: #000; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 10px; white-space: nowrap; }
.pc-tier { color: #c291cb; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.pc-name { font-size: 20px; font-weight: 700; margin: 8px 0; }
.pc-rule { height: 1px; background: var(--border); margin: 15px 0; }
.pc-price { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--text); }
.pc-unit { font-size: 14px; font-weight: 400; color: var(--text-dim); font-family: var(--sans); }
.pc-sub { font-size: 13px; color: var(--text-dim); margin-bottom: 20px; }
.pc-incl { list-style: none; margin-bottom: 25px; }
.pc-incl li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.pc-incl li::before { content: "✓"; color: #c291cb; font-weight: 700; }
.pc-cta { display: block; width: 100%; background: var(--secondary); border: 1px solid var(--border); color: var(--text); text-align: center; padding: 12px; border-radius: 4px; font-weight: 700; text-decoration: none; }
.price-card.hero .pc-cta { background: #c291cb; color: #000; border-color: #c291cb; }

/* Live Feed */
.live-feed { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.live-feed-head { background: var(--secondary); padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.live-pill { background: #ef4444; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 3px; margin-right: 10px; text-transform: uppercase; }
.lh-title { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.lh-right { font-size: 13px; font-weight: 700; color: #c291cb; }
.live-feed .row { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid var(--border); }
.row .av { width: 35px; height: 35px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.row .av img { width: 100%; height: 100%; object-fit: cover; }
.row .body { flex-grow: 1; }
.row .ev { font-size: 13px; color: var(--text); font-weight: 500; }
.row .gd { color: #c291cb; font-weight: 700; }
.row .meta { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.row .ts { font-size: 11px; color: var(--text-dim); white-space: nowrap; }
.live-feed-foot { padding: 15px 20px; background: var(--secondary); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); }

/* FAQ */
.faq.chat { display: grid; gap: 15px; }
.faq details { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.faq summary { padding: 15px 20px; cursor: pointer; font-weight: 700; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq summary::after { content: "+"; font-size: 20px; color: #c291cb; font-weight: 800; }
.faq details[open] summary::after { content: "-"; }
.qbubble { font-size: 15px; }
.qmeta { font-size: 11px; color: var(--text-dim); font-weight: 500; margin-top: 4px; }
.answer-wrap { padding: 0 20px 20px; }
.abubble { background: var(--secondary); padding: 15px; border-radius: 0 8px 8px 8px; font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.ameta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #c291cb; font-weight: 700; }
.ameta svg { width: 12px; height: 12px; }
.faq-cta { text-align: center; margin-top: 40px; padding: 30px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; }
.faq-cta h3 { font-size: 22px; margin-bottom: 10px; }
.faq-cta p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

/* Final CTA */
.final-cta { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 80px 20px; position: relative; }
.grain { display: none; }
.final-cta-inner { max-width: 1100px; margin: 0 auto; }
.cta-editorial { display: grid; gap: 40px; align-items: center; }
.cta-edi-text h2 { font-size: 32px; margin-bottom: 15px; }
.cta-edi-text p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 25px; }
.contact-line { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.contact-line a { color: var(--text-dim); font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.cta-portraits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; position: relative; }
.cta-portraits .pic { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.cta-portraits .pic img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.badge-200 { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); background: #c291cb; color: #000; padding: 8px 16px; border-radius: 20px; font-size: 12px; font-weight: 800; white-space: nowrap; }

/* Footer */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.foot-brand p { font-size: 13px; color: var(--text-muted); margin: 15px 0; line-height: 1.6; }
.made-in { display: block; font-size: 12px; color: var(--text-dim); margin-bottom: 20px; }
.foot-contact { display: flex; flex-direction: column; gap: 10px; }
.foot-contact a { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; text-decoration: none; }
.foot-contact svg { width: 16px; height: 16px; color: #c291cb; }
.foot-social { display: flex; gap: 10px; margin-top: 15px; }
.foot-social a { background: var(--secondary); border: 1px solid var(--border); width: 36px; height: 36px; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--text); }
.foot-social svg { width: 18px; height: 18px; fill: currentColor; }
.foot-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 15px; color: var(--text); }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { color: var(--text-muted); font-size: 13px; text-decoration: none; }
.foot-col a:hover { color: #c291cb; }
.foot-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.cr { font-size: 12px; color: var(--text-dim); }
.adult-pill { display: flex; align-items: center; gap: 6px; background: var(--secondary); border: 1px solid var(--border); padding: 6px 12px; border-radius: 3px; font-size: 12px; font-weight: 700; color: var(--text-muted); }
.adult-pill svg { width: 14px; height: 14px; color: #c291cb; }

/* =========================================
   FAB & Mobile Nav (FIXED)
   ========================================= */
.fab-wrap { 
  position: fixed; 
  bottom: 75px; /* Bottom nav ke upar adjust kiya */
  right: 15px; 
  z-index: 95; /* Bottom nav se zyada hona chahiye */
  display: flex; 
  flex-direction: column; 
  align-items: flex-end; 
  max-width: calc(100vw - 30px); /* Screen se bahar na jaye */
} 
.fab-tip { 
  background: var(--text); 
  color: var(--bg); 
  padding: 5px 10px; 
  border-radius: 3px; 
  font-size: 11px; 
  font-weight: 700; 
  margin-bottom: 5px; 
  white-space: normal; /* Wrap hoga text agar space kam hua */
  max-width: 180px; 
  text-align: right;
  line-height: 1.3;
} 
.fab { 
  background: #25D366; 
  color: #fff; 
  width: 50px; 
  height: 50px; 
  border-radius: 25px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
  text-decoration: none;
  flex-shrink: 0;
} 
.fab svg { width: 26px; height: 26px; }

.bottom-nav { 
  position: fixed; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  background: var(--bg-alt); 
  border-top: 1px solid var(--border); 
  display: flex; 
  justify-content: space-between; /* Equal spacing */
  width: 100%; 
  max-width: 100vw; /* Screen width se zyada nahi hoga */
  z-index: 90; 
  padding: 6px 0; 
  overflow: hidden; /* Extra content hide karega */
  box-sizing: border-box;
} 
.bottom-nav a { 
  color: var(--text-dim); 
  text-decoration: none; 
  font-size: 10px; 
  font-weight: 700; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 2px; 
  padding: 5px 4px; /* Kam padding diya */
  flex: 1; /* Sab links barabar space lenge */
  min-width: 0; /* Flexbox shrink issue fix */
  overflow: hidden; 
  text-overflow: ellipsis; 
  white-space: nowrap; 
  text-align: center;
} 
.bottom-nav a.is-active { color: #c291cb; } 
.bottom-nav svg { 
  width: 20px; 
  height: 20px; 
  flex-shrink: 0; /* Icons chote nahi honge */
}

/* Drawer */
.drawer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 200; display: none; }
.drawer.open { display: block; }
.drawer-panel { background: var(--bg-alt); width: 280px; height: 100%; padding: 20px; border-right: 1px solid var(--border); position: relative; }
.drawer-close { position: absolute; top: 15px; right: 15px; }
.drawer nav { margin-top: 50px; display: flex; flex-direction: column; gap: 15px; }
.drawer nav a { color: var(--text); font-size: 16px; font-weight: 600; text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--border); }

/* Responsive */
@media (min-width: 768px) {
  .nav { display: flex; gap: 20px; }
  .nav a { color: var(--text-muted); font-size: 14px; font-weight: 600; text-decoration: none; }
  .nav a.is-active { color: #c291cb; }
  .menu-tog { display: none; }
  .editorial { grid-template-columns: 1fr 1fr; }
  .editorial.flip { direction: rtl; }
  .editorial.flip > * { direction: ltr; }
  .cta-editorial { grid-template-columns: 1fr 1fr; }
  .bottom-nav { display: none; } /* Desktop par hide */
  .fab-wrap { bottom: 25px; } /* Desktop par bottom nav nahi hai toh neeche karo */
  .hero h1 { font-size: 48px; }
}

/* No Animation Override */
.reveal { opacity: 1 !important; transform: none !important; }

/* --- Section Wrapper --- */
.band {
    padding: 60px 0;
    background: var(--bg);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Header --- */
.section-head {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}
.eyebrow {
    color: #c291cb;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
    border-left: none !important;
    padding-left: 0 !important;
}
.it {
    color: #c291cb;
    font-style: italic;
}
.section-link {
    color: #c291cb;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.section-link .arr {
    display: inline-flex;
}
.section-link .arr svg {
    width: 16px;
    height: 16px;
}

/* --- Category Grid Layout --- */
.cat-grid-img {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

/* --- Category Tile Box --- */
.cat-tile {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text);
}
.cat-tile:hover {
    border-color: #c291cb;
    background: var(--secondary);
}

/* --- Category Icon (Circle) --- */
.cat-ico {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cat-ico svg {
    width: 22px;
    height: 22px;
    color: #c291cb;
}

/* --- Category Text & Arrow --- */
.cat-tile-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
}
.cat-tile-label .nm {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ct-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}

/* --- Arrow Icon --- */
.cat-tile-label .arr {
    color: var(--text-dim);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
}
.cat-tile-label .arr svg {
    width: 18px;
    height: 18px;
}
.cat-tile:hover .cat-tile-label .arr {
    color: #c291cb;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .cat-grid-img {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    .cat-tile {
        padding: 14px;
    }
    .cat-ico {
        width: 40px;
        height: 40px;
    }
    .cat-ico svg {
        width: 18px;
        height: 18px;
    }
    .cat-tile-label .nm {
        font-size: 14px;
    }
    
    /* Body padding for fixed bottom nav so content doesn't hide behind it */
    body {
        padding-bottom: 70px; 
    }
}