/*
Theme Name:     Vaibhav Suryavanshi Official
Theme URI:      https://vaibhavsuryavanshiofficial.in
Description:    Official premium bilingual WordPress theme for Vaibhav Suryavanshi. Built on GeneratePress. Google Discover optimised, Schema.org structured, mobile-first, zero emoji — SVG-only iconography.
Author:         VS Official Team
Author URI:     https://vaibhavsuryavanshiofficial.in
Template:       generatepress
Version:        2.0.0
Requires PHP:   7.4
Text Domain:    vso
License:        GPL v2 or later
*/

/* ============================================================
   VAIBHAV SURYAVANSHI OFFICIAL — DESIGN SYSTEM v2
   Aesthetic: Editorial Sports Magazine — Luxury Minimalism
   Palette: Deep Navy · Crimson Accent · Warm Gold · Pure White
   Typography: Playfair Display (display) · DM Sans (body)
   ============================================================ */

/* ── LAYER 1: CSS TOKENS ──────────────────────────────────── */
:root {
  /* Colour Palette */
  --ink:           #0A0F1E;
  --ink-80:        rgba(10,15,30,.8);
  --navy:          #0D1B3E;
  --navy-mid:      #162554;
  --navy-light:    #1E3370;
  --crimson:       #C8102E;
  --crimson-dark:  #A00D24;
  --crimson-light: #E8152E;
  --gold:          #B8922A;
  --gold-light:    #D4A843;
  --gold-pale:     #F5E6C0;
  --white:         #FFFFFF;
  --off-white:     #F8F9FC;
  --surface:       #FFFFFF;
  --surface-alt:   #F2F4F9;
  --border:        #E3E7F0;
  --border-dark:   #C8CFDF;
  --text-primary:  #0A0F1E;
  --text-secondary:#3D4A62;
  --text-muted:    #7A8499;
  --text-light:    #A8B2C8;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-heading: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;
  --font-hindi:   'Noto Serif Devanagari', 'Hind', serif;

  /* Spacing Scale */
  --s1:  4px;   --s2:  8px;   --s3:  12px;  --s4:  16px;
  --s5:  20px;  --s6:  24px;  --s7:  32px;  --s8:  40px;
  --s9:  56px;  --s10: 72px;  --s11: 96px;  --s12: 128px;

  /* Border Radius */
  --r1: 2px;  --r2: 4px;  --r3: 8px;
  --r4: 12px; --r5: 16px; --r6: 24px; --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10,15,30,.06);
  --shadow-sm: 0 2px 8px rgba(10,15,30,.08), 0 1px 3px rgba(10,15,30,.06);
  --shadow-md: 0 6px 24px rgba(10,15,30,.10), 0 2px 8px rgba(10,15,30,.06);
  --shadow-lg: 0 16px 48px rgba(10,15,30,.14), 0 4px 16px rgba(10,15,30,.08);
  --shadow-xl: 0 32px 80px rgba(10,15,30,.18), 0 8px 24px rgba(10,15,30,.10);
  --shadow-crimson: 0 8px 32px rgba(200,16,46,.25);
  --shadow-gold:    0 8px 32px rgba(184,146,42,.30);

  /* Transitions */
  --t-fast:   150ms cubic-bezier(.4,0,.2,1);
  --t-base:   300ms cubic-bezier(.4,0,.2,1);
  --t-slow:   500ms cubic-bezier(.4,0,.2,1);
  --t-spring: 400ms cubic-bezier(.34,1.56,.64,1);

  /* Gradients */
  --grad-navy:    linear-gradient(160deg, #0D1B3E 0%, #162554 50%, #1E3370 100%);
  --grad-ink:     linear-gradient(160deg, #0A0F1E 0%, #0D1B3E 100%);
  --grad-crimson: linear-gradient(135deg, #C8102E 0%, #A00D24 100%);
  --grad-gold:    linear-gradient(135deg, #B8922A 0%, #D4A843 100%);
  --grad-hero:    linear-gradient(160deg, #060B18 0%, #0D1B3E 45%, #162554 100%);
  --grad-card-hover: linear-gradient(180deg, rgba(200,16,46,.04) 0%, rgba(200,16,46,.01) 100%);
}

/* ── LAYER 2: RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text-primary); background: var(--off-white); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--crimson); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--crimson-dark); }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── LAYER 3: TYPOGRAPHY ──────────────────────────────────── */
.t-overline {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--crimson);
}

.t-display-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.5px;
  color: var(--white);
}

.t-display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.3px;
  color: var(--ink);
}

.t-display-md {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.t-heading-lg  { font-size: clamp(20px,2.5vw,26px); font-weight: 700; line-height: 1.25; }
.t-heading-md  { font-size: clamp(17px,2vw,21px);   font-weight: 700; line-height: 1.3;  }
.t-heading-sm  { font-size: 15px; font-weight: 700; line-height: 1.35; }
.t-body-lg     { font-size: 17px; line-height: 1.8; color: var(--text-secondary); }
.t-body        { font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.t-body-sm     { font-size: 13px; line-height: 1.65; color: var(--text-muted); }
.t-caption     { font-size: 11px; letter-spacing: .5px; color: var(--text-light); }

/* Hindi override */
.lang-hi .t-display-xl,
.lang-hi .t-display-lg,
.lang-hi .t-display-md,
.lang-hi h1, .lang-hi h2, .lang-hi h3 {
  font-family: var(--font-hindi);
  letter-spacing: 0;
}

/* Section Header Component */
.section-header { margin-bottom: var(--s8); }
.section-header .t-overline { margin-bottom: var(--s2); display: block; }
.section-header .section-rule {
  width: 40px; height: 2px;
  background: var(--grad-crimson);
  margin-top: var(--s3);
  border-radius: var(--r-full);
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s8);
  flex-wrap: wrap;
}

/* ── LAYER 4: LAYOUT UTILITIES ────────────────────────────── */
.wrap        { max-width: 1280px; margin: 0 auto; padding: 0 var(--s6); }
.wrap-narrow { max-width: 900px;  margin: 0 auto; padding: 0 var(--s6); }
.wrap-wide   { max-width: 1440px; margin: 0 auto; padding: 0 var(--s6); }

.grid-2   { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s6); }
.grid-3   { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s6); }
.grid-4   { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s5); }
.grid-5   { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--s4); }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-y      { display: flex; align-items: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { display: flex; flex-direction: column; }
.gap-2 { gap: var(--s2); } .gap-3 { gap: var(--s3); } .gap-4 { gap: var(--s4); }
.gap-5 { gap: var(--s5); } .gap-6 { gap: var(--s6); }

.section-pad    { padding: var(--s11) 0; }
.section-pad-sm { padding: var(--s9)  0; }
.section-pad-xs { padding: var(--s7)  0; }

/* ── LAYER 5: BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: 11px 24px; border-radius: var(--r2);
  font-family: var(--font-heading); font-size: 13px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid transparent;
  transition: all var(--t-base); white-space: nowrap; line-height: 1;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-primary {
  background: var(--crimson); color: var(--white); border-color: var(--crimson);
}
.btn-primary:hover {
  background: var(--crimson-dark); border-color: var(--crimson-dark);
  color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-crimson);
}

.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: var(--white);
}

.btn-outline-dark {
  background: transparent; color: var(--ink); border-color: var(--border-dark);
}
.btn-outline-dark:hover {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}

.btn-gold {
  background: var(--grad-gold); color: var(--white); border-color: var(--gold);
}
.btn-gold:hover {
  transform: translateY(-1px); box-shadow: var(--shadow-gold); color: var(--white);
}

.btn-ghost {
  background: transparent; color: var(--crimson); border-color: transparent;
  padding: 11px 0;
}
.btn-ghost:hover { color: var(--crimson-dark); gap: var(--s3); }

.btn-sm { padding: 8px 16px; font-size: 11px; }
.btn-lg { padding: 14px 32px; font-size: 14px; }

/* ── LAYER 6: BADGES & CHIPS ──────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: var(--r2);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; line-height: 1.4; white-space: nowrap;
}
.badge-crimson { background: rgba(200,16,46,.1); color: var(--crimson); }
.badge-navy    { background: rgba(13,27,62,.08);  color: var(--navy); }
.badge-gold    { background: rgba(184,146,42,.12); color: var(--gold); }
.badge-green   { background: rgba(5,150,105,.1);  color: #047857; }
.badge-live    { background: var(--crimson); color: var(--white); animation: pulse 2s infinite; }
.badge-dark    { background: var(--navy); color: var(--white); }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.65} }

/* ── LAYER 7: CARDS ───────────────────────────────────────── */
.card {
  background: var(--surface); border-radius: var(--r4);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-dark);
}
.card-dark {
  background: var(--navy-mid); border-color: rgba(255,255,255,.06);
}
.card-dark:hover { border-color: rgba(200,16,46,.3); }

/* ── LAYER 8: TOP ANNOUNCEMENT BAR ───────────────────────── */
#vso-topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0;
  height: 40px;
  overflow: hidden;
}
.topbar-inner {
  height: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s6);
}
.topbar-news {
  display: flex; align-items: center; gap: var(--s4); flex: 1; overflow: hidden;
}
.topbar-badge {
  flex-shrink: 0;
  background: var(--crimson);
  color: var(--white);
  font-size: 9px; font-weight: 800; letter-spacing: 2px;
  padding: 3px 8px; text-transform: uppercase;
}
.topbar-ticker-wrap { flex: 1; overflow: hidden; }
.topbar-ticker-wrap marquee {
  font-size: 12px; color: rgba(255,255,255,.65); letter-spacing: .3px;
}
.topbar-actions { display: flex; align-items: center; gap: var(--s4); flex-shrink: 0; }
.topbar-divider { width: 1px; height: 18px; background: rgba(255,255,255,.12); }
.lang-toggle {
  display: flex; border: 1px solid rgba(255,255,255,.15); border-radius: var(--r2); overflow: hidden;
}
.lang-btn {
  padding: 4px 10px; font-size: 11px; font-weight: 700; letter-spacing: .5px;
  cursor: pointer; border: none; background: transparent; color: rgba(255,255,255,.45);
  transition: all var(--t-fast); line-height: 1;
}
.lang-btn.active { background: var(--crimson); color: var(--white); }
.topbar-social { display: flex; align-items: center; gap: var(--s3); }
.topbar-social a {
  color: rgba(255,255,255,.4); transition: color var(--t-fast); display: flex;
}
.topbar-social a:hover { color: var(--white); }
.topbar-social svg { width: 14px; height: 14px; }

/* ── LAYER 9: SITE HEADER ─────────────────────────────────── */
#vso-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(13,27,62,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--t-base), background var(--t-base);
}
#vso-header.scrolled {
  background: rgba(10,15,30,.99);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.header-inner {
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: var(--s6);
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: var(--s4); text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; background: var(--grad-crimson);
  border-radius: var(--r2); display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 22px; height: 22px; color: var(--white); }
.logo-wordmark { line-height: 1; }
.logo-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--white); letter-spacing: -.2px;
}
.logo-sub {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 2px;
}

/* Primary Nav */
#vso-nav { display: flex; align-items: center; gap: 2px; }
#vso-nav a {
  color: rgba(255,255,255,.65); font-size: 13px; font-weight: 600;
  letter-spacing: .3px; padding: 8px 12px; border-radius: var(--r2);
  text-decoration: none; transition: all var(--t-fast); white-space: nowrap;
}
#vso-nav a:hover, #vso-nav a.current { color: var(--white); background: rgba(255,255,255,.08); }
#vso-nav a.nav-cta {
  background: var(--crimson); color: var(--white);
  padding: 8px 16px; margin-left: var(--s2);
}
#vso-nav a.nav-cta:hover { background: var(--crimson-dark); color: var(--white); }

/* Header controls */
.header-controls { display: flex; align-items: center; gap: var(--s3); }
.header-icon-btn {
  width: 36px; height: 36px; border-radius: var(--r2);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast); cursor: pointer;
}
.header-icon-btn:hover { background: rgba(255,255,255,.14); color: var(--white); }
.header-icon-btn svg { width: 16px; height: 16px; }
.hamburger-btn { display: none; }

/* ── LAYER 10: HERO SECTION ───────────────────────────────── */
#vso-hero {
  background: var(--grad-hero);
  position: relative; overflow: hidden; min-height: 100svh;
  display: flex; align-items: center;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .6; pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-accent-circle {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-circle-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-circle-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,146,42,.08) 0%, transparent 70%);
  bottom: 0; left: 10%;
}
.hero-content-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 440px;
  gap: var(--s12); align-items: center;
  padding: var(--s12) 0; width: 100%;
}
.hero-left {}
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s6); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.hero-badge-official {
  background: rgba(200,16,46,.2); color: #FF6B7A;
  border: 1px solid rgba(200,16,46,.3);
}
.hero-badge-rr {
  background: rgba(234,26,140,.15); color: #F472B6;
  border: 1px solid rgba(234,26,140,.25);
}
.hero-badge-record {
  background: rgba(184,146,42,.15); color: #D4A843;
  border: 1px solid rgba(184,146,42,.25);
}
.hero-badge svg { width: 11px; height: 11px; }

.hero-name-en {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 700; line-height: .95; letter-spacing: -1px;
  color: var(--white);
}
.hero-name-en .name-accent { color: var(--crimson); }
.hero-name-hi {
  font-family: var(--font-hindi);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.1;
  color: var(--white);
}
.hero-subtitle {
  margin: var(--s5) 0 var(--s8);
  font-size: 15px; color: rgba(255,255,255,.5);
  letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600; font-family: var(--font-heading);
  display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap;
}
.hero-subtitle-sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* Hero Stats Strip */
.hero-stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r3); overflow: hidden;
  margin-bottom: var(--s8);
}
.hero-stat {
  padding: var(--s4) var(--s5); text-align: center;
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--t-fast);
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(200,16,46,.06); }
.hero-stat-val {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: var(--gold-light); line-height: 1; margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}

.hero-actions { display: flex; gap: var(--s4); flex-wrap: wrap; }

/* Hero Profile Panel */
.hero-profile-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r5); overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero-img-wrap {
  position: relative;
  background: linear-gradient(180deg, rgba(200,16,46,.1) 0%, rgba(13,27,62,.9) 80%);
  aspect-ratio: 3/4; overflow: hidden; display: flex;
  align-items: center; justify-content: center;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-placeholder svg {
  width: 40%; height: 40%; color: rgba(255,255,255,.12);
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--s5) var(--s5) var(--s4);
  background: linear-gradient(to top, rgba(10,15,30,.95) 0%, transparent 100%);
}
.hero-panel-team {
  display: flex; align-items: center; gap: var(--s2); margin-bottom: var(--s1);
}
.team-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--crimson); }
.hero-panel-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hps-item {
  padding: var(--s4) var(--s5); text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  background: rgba(10,15,30,.6);
}
.hps-item:nth-child(3), .hps-item:nth-child(4) {
  border-top: 1px solid rgba(255,255,255,.06);
}
.hps-item:nth-child(2), .hps-item:nth-child(4) { border-right: none; }
.hps-val {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--crimson); line-height: 1;
}
.hps-lbl { font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 3px; }

/* ── LAYER 11: SCORE TICKER ───────────────────────────────── */
#vso-ticker {
  background: var(--navy-mid);
  border-bottom: 2px solid var(--crimson);
  padding: var(--s2) 0;
}
.ticker-inner { display: flex; align-items: center; gap: var(--s6); overflow-x: auto; scrollbar-width: none; }
.ticker-inner::-webkit-scrollbar { display: none; }
.ticker-label {
  flex-shrink: 0; background: var(--crimson); color: var(--white);
  font-size: 9px; font-weight: 800; letter-spacing: 2px;
  padding: 4px 10px; text-transform: uppercase;
}
.ticker-item {
  display: flex; align-items: center; gap: var(--s3); flex-shrink: 0;
  padding: 0 var(--s5); border-left: 1px solid rgba(255,255,255,.08);
}
.ticker-match { font-size: 13px; font-weight: 700; color: var(--white); font-family: var(--font-heading); }
.ticker-score { font-family: var(--font-display); font-size: 18px; color: var(--gold-light); }
.ticker-vs    { font-size: 10px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 1px; }
.ticker-highlight {
  display: flex; align-items: center; gap: var(--s2);
  padding: 4px 12px;
  background: rgba(200,16,46,.15); border: 1px solid rgba(200,16,46,.25);
  border-radius: var(--r2);
}
.ticker-player-name { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.8); }
.ticker-player-score { font-family: var(--font-display); font-size: 17px; color: var(--crimson); }

/* ── LAYER 12: STATS OVERVIEW BAR ────────────────────────── */
#vso-stats-bar { background: var(--navy); }
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(6,1fr);
  border: 1px solid rgba(255,255,255,.05); border-radius: var(--r3);
  overflow: hidden; margin: var(--s7) 0;
}
.sbi {
  padding: var(--s5) var(--s4); text-align: center;
  background: rgba(255,255,255,.02);
  border-right: 1px solid rgba(255,255,255,.04);
  transition: background var(--t-fast); cursor: default;
}
.sbi:last-child { border-right: none; }
.sbi:hover { background: rgba(200,16,46,.06); }
.sbi-val {
  font-family: var(--font-display); font-size: 38px; font-weight: 700;
  color: var(--crimson); line-height: 1; margin-bottom: var(--s1);
}
.sbi-lbl { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.sbi-sub { font-size: 10px; color: rgba(184,146,42,.7); font-weight: 600; margin-top: 2px; }

/* ── LAYER 13: NEWS SECTION ───────────────────────────────── */
#vso-news { background: var(--off-white); }
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s5);
}
/* Featured article */
.news-featured {
  grid-row: span 2;
  background: var(--surface); border-radius: var(--r4);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.news-featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-featured-img {
  aspect-ratio: 16/10; overflow: hidden; position: relative;
  background: var(--navy);
}
.news-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.news-featured:hover .news-featured-img img { transform: scale(1.03); }
.news-featured-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.news-featured-img-placeholder svg { width: 80px; height: 80px; color: rgba(255,255,255,.1); }
.news-featured-cat {
  position: absolute; top: var(--s4); left: var(--s4);
  background: var(--crimson); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  padding: 4px 10px; text-transform: uppercase;
}
.news-featured-body { padding: var(--s6); flex: 1; display: flex; flex-direction: column; }
.news-featured-title {
  font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700; line-height: 1.3; color: var(--text-primary);
  margin: var(--s3) 0 var(--s4); text-decoration: none; display: block;
}
.news-featured-title:hover { color: var(--crimson); }
.news-meta {
  display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap;
}
.news-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); }
.news-meta-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.news-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--border-dark); }
.news-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.7; flex: 1; margin: var(--s4) 0; }

/* News list items */
.news-list-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r3); padding: var(--s4);
  display: flex; gap: var(--s4); text-decoration: none;
  transition: all var(--t-base); box-shadow: var(--shadow-xs);
}
.news-list-item:hover { border-color: var(--crimson); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.news-list-thumb {
  width: 90px; height: 68px; border-radius: var(--r2); overflow: hidden;
  flex-shrink: 0; background: var(--navy);
}
.news-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-list-thumb-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.news-list-thumb-placeholder svg { width: 28px; height: 28px; color: rgba(255,255,255,.2); }
.news-list-body {}
.news-list-cat { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--crimson); margin-bottom: 4px; }
.news-list-title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--text-primary); line-height: 1.4; margin-bottom: 5px; }
.news-list-date { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.news-list-date svg { width: 11px; height: 11px; }

/* ── LAYER 14: BIOGRAPHY SECTION ─────────────────────────── */
#vso-biography { background: var(--surface); }
.bio-grid {
  display: grid; grid-template-columns: 300px 1fr;
  gap: var(--s10); align-items: start;
}
.bio-profile-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r5); overflow: hidden; box-shadow: var(--shadow-md);
  position: sticky; top: 90px;
}
.bio-img {
  aspect-ratio: 4/5; background: var(--navy); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.bio-img img { width: 100%; height: 100%; object-fit: cover; }
.bio-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--grad-navy);
}
.bio-img-placeholder svg { width: 50%; height: 50%; color: rgba(255,255,255,.1); }
.bio-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,15,30,.9), transparent);
  padding: var(--s5);
}
.bio-info-table { padding: var(--s5); }
.bio-info-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: var(--s3) 0; border-bottom: 1px solid var(--border); gap: var(--s4);
}
.bio-info-row:last-child { border-bottom: none; }
.bio-info-key { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); flex-shrink: 0; }
.bio-info-val { font-size: 13px; font-weight: 600; color: var(--text-primary); text-align: right; }

.bio-content {}
.bio-content h2 { font-family: var(--font-display); font-size: clamp(24px,3.5vw,38px); font-weight: 700; color: var(--ink); margin-bottom: var(--s5); }
.bio-content h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--ink); margin: var(--s7) 0 var(--s4); padding-left: var(--s4); border-left: 2px solid var(--crimson); }
.bio-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: var(--s5); }
.bio-pullquote {
  margin: var(--s8) 0; padding: var(--s6) var(--s7);
  background: var(--off-white); border-left: 3px solid var(--crimson);
  border-radius: 0 var(--r3) var(--r3) 0;
}
.bio-pullquote blockquote { font-family: var(--font-display); font-size: 19px; font-style: italic; color: var(--ink); line-height: 1.55; }
.bio-pullquote cite { display: block; margin-top: var(--s3); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--crimson); font-style: normal; }

/* ── LAYER 15: CAREER TIMELINE ────────────────────────────── */
#vso-timeline { background: var(--off-white); }
.timeline-track {
  position: relative; padding-left: 72px;
}
.timeline-track::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--crimson), var(--gold), rgba(200,16,46,.1));
}
.timeline-entry { position: relative; margin-bottom: var(--s7); }
.timeline-entry:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -56px; top: 20px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--crimson); border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--crimson);
}
.timeline-year-tag {
  position: absolute; left: -72px; top: 4px;
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  color: var(--crimson); text-transform: uppercase; white-space: nowrap;
}
.timeline-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r4); padding: var(--s5) var(--s6);
  box-shadow: var(--shadow-xs); transition: all var(--t-base);
}
.timeline-card:hover { border-color: rgba(200,16,46,.25); box-shadow: var(--shadow-md); transform: translateX(4px); }
.timeline-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s4); margin-bottom: var(--s3); }
.timeline-title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.timeline-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--s4); }
.timeline-chips { display: flex; flex-wrap: wrap; gap: var(--s2); }
.timeline-chip {
  font-size: 10px; font-weight: 700; letter-spacing: .5px;
  padding: 3px 8px; background: rgba(200,16,46,.06);
  color: var(--crimson); border-radius: var(--r2);
}

/* ── LAYER 16: RECORDS SECTION ────────────────────────────── */
#vso-records { background: var(--navy); }
.records-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s5); }
.record-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r4); padding: var(--s7) var(--s6); position: relative;
  overflow: hidden; transition: all var(--t-base);
}
.record-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-gold);
}
.record-card:hover { background: rgba(255,255,255,.06); border-color: rgba(184,146,42,.2); transform: translateY(-4px); }
.record-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--r3);
  background: rgba(184,146,42,.1); border: 1px solid rgba(184,146,42,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--s5);
}
.record-icon-wrap svg { width: 24px; height: 24px; color: var(--gold-light); }
.record-val {
  font-family: var(--font-display); font-size: 52px; font-weight: 700;
  color: var(--gold-light); line-height: 1; margin-bottom: var(--s2);
}
.record-title { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: var(--s2); }
.record-desc  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; }
.record-badge { position: absolute; top: var(--s4); right: var(--s4); }

/* ── LAYER 17: STATISTICS SECTION ────────────────────────── */
#vso-statistics { background: var(--surface); }
.stats-tabs-bar {
  display: flex; gap: 0; border-bottom: 1.5px solid var(--border);
  margin-bottom: var(--s7); overflow-x: auto; scrollbar-width: none;
}
.stats-tabs-bar::-webkit-scrollbar { display: none; }
.stats-tab-btn {
  padding: 10px 20px; font-size: 12px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; cursor: pointer;
  border: none; background: none; color: var(--text-muted);
  border-bottom: 2px solid transparent; margin-bottom: -1.5px;
  transition: all var(--t-fast); white-space: nowrap;
}
.stats-tab-btn:hover  { color: var(--text-primary); }
.stats-tab-btn.active { color: var(--crimson); border-bottom-color: var(--crimson); }
.stats-table-wrap { overflow-x: auto; border-radius: var(--r3); border: 1px solid var(--border); }
table.vso-table { width: 100%; border-collapse: collapse; font-size: 14px; }
table.vso-table thead { background: var(--navy); }
table.vso-table th {
  padding: 11px 16px; text-align: left;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.5); white-space: nowrap;
}
table.vso-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--t-fast); }
table.vso-table tbody tr:hover { background: rgba(200,16,46,.03); }
table.vso-table td { padding: 12px 16px; color: var(--text-primary); vertical-align: middle; white-space: nowrap; }
table.vso-table td.td-highlight { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--crimson); }
table.vso-table td.td-name { font-weight: 700; font-family: var(--font-heading); font-size: 15px; }
.vso-sr-bar { display: flex; align-items: center; gap: var(--s3); min-width: 140px; }
.vso-bar-track { flex: 1; height: 5px; background: var(--surface-alt); border-radius: var(--r-full); overflow: hidden; }
.vso-bar-fill  { height: 100%; background: var(--grad-crimson); border-radius: var(--r-full); transition: width 1.2s ease; }

/* Summary stat cards */
.stats-summary-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s4); margin-top: var(--s7); }
.stat-summary-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r3); padding: var(--s5); overflow: hidden;
  position: relative;
}
.stat-summary-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-crimson);
}
.ssc-format { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--crimson); margin-bottom: var(--s4); }
.ssc-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--border); }
.ssc-row:last-child { border-bottom: none; }
.ssc-k { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.ssc-v { font-family: var(--font-heading); font-size: 15px; font-weight: 800; color: var(--ink); }

/* ── LAYER 18: PHOTO GALLERY ──────────────────────────────── */
#vso-gallery { background: var(--off-white); }
.gallery-filter-row { display: flex; gap: var(--s2); margin-bottom: var(--s6); flex-wrap: wrap; }
.gf-btn {
  padding: 7px 16px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  cursor: pointer; border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text-secondary);
  transition: all var(--t-fast);
}
.gf-btn:hover, .gf-btn.active { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.gallery-masonry {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 180px; gap: var(--s3);
}
.gal-item {
  border-radius: var(--r3); overflow: hidden; cursor: pointer;
  position: relative; background: var(--navy); transition: all var(--t-base);
}
.gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(5) { grid-column: span 2; }
.gal-item:nth-child(9) { grid-column: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gal-item:hover img { transform: scale(1.04); }
.gal-item-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
}
.gal-item-placeholder svg { width: 32px; height: 32px; color: rgba(255,255,255,.12); }
.gal-overlay {
  position: absolute; inset: 0; background: rgba(10,15,30,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t-fast);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay svg { width: 28px; height: 28px; color: var(--white); }
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--s3) var(--s4);
  background: linear-gradient(to top, rgba(10,15,30,.85), transparent);
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.9);
  transform: translateY(100%); transition: transform var(--t-base);
}
.gal-item:hover .gal-caption { transform: translateY(0); }

/* ── LAYER 19: VIDEOS & INTERVIEWS ───────────────────────── */
#vso-videos { background: var(--navy); }
.videos-layout { display: grid; grid-template-columns: 2fr 1fr; gap: var(--s6); }
.video-featured-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r4); overflow: hidden;
}
.video-thumb-wrap {
  position: relative; aspect-ratio: 16/9;
  background: var(--navy-mid); cursor: pointer;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.video-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
}
.video-thumb-placeholder svg { width: 60px; height: 60px; color: rgba(255,255,255,.1); }
.play-btn-overlay {
  position: absolute; width: 64px; height: 64px;
  background: var(--crimson); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(200,16,46,.2);
  transition: all var(--t-base);
}
.play-btn-overlay svg { width: 28px; height: 28px; color: var(--white); margin-left: 3px; }
.video-thumb-wrap:hover .play-btn-overlay { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(200,16,46,.15); }
.video-duration {
  position: absolute; bottom: var(--s3); right: var(--s3);
  background: rgba(0,0,0,.75); color: var(--white);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: var(--r1);
}
.video-featured-info { padding: var(--s5) var(--s6); }
.video-featured-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.35; margin: var(--s2) 0 var(--s4); }
.video-meta-row { display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap; }
.video-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,.4); }
.video-meta-item svg { width: 12px; height: 12px; }
.video-list { display: flex; flex-direction: column; gap: var(--s3); }
.video-list-item {
  display: flex; gap: var(--s4); align-items: center;
  padding: var(--s3) var(--s4); border-radius: var(--r3);
  background: rgba(255,255,255,.03); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: all var(--t-fast);
}
.video-list-item:hover, .video-list-item.active {
  background: rgba(200,16,46,.07); border-color: rgba(200,16,46,.2);
}
.vli-thumb {
  width: 84px; height: 54px; border-radius: var(--r2); flex-shrink: 0;
  background: var(--navy-light); overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.vli-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vli-thumb svg { width: 20px; height: 20px; color: rgba(255,255,255,.25); }
.vli-play {
  position: absolute; width: 22px; height: 22px;
  background: rgba(200,16,46,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vli-play svg { width: 9px; height: 9px; color: white; margin-left: 2px; }
.vli-info {}
.vli-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); line-height: 1.4; margin-bottom: 4px; }
.vli-meta  { font-size: 11px; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: var(--s3); }

/* ── LAYER 20: UPCOMING MATCHES ───────────────────────────── */
#vso-upcoming { background: var(--surface); }
.upcoming-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s5); }
.match-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r4); overflow: hidden; transition: all var(--t-base);
  box-shadow: var(--shadow-xs);
}
.match-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-dark); }
.match-card-header {
  background: var(--navy); padding: var(--s3) var(--s5);
  display: flex; align-items: center; justify-content: space-between;
}
.match-tournament { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.55); }
.match-card-body { padding: var(--s5) var(--s5) var(--s4); }
.match-teams { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s4); }
.match-team { text-align: center; flex: 1; }
.match-team-name { font-family: var(--font-heading); font-size: 16px; font-weight: 800; color: var(--ink); }
.match-team-full { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.match-vs-badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--crimson); color: var(--white);
  font-size: 11px; font-weight: 800; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.match-card-meta {
  border-top: 1px solid var(--border); padding-top: var(--s3);
  display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap;
}
.match-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); }
.match-meta-item svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── LAYER 21: AWARDS & HONORS ────────────────────────────── */
#vso-awards { background: var(--off-white); }
.awards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s4); }
.award-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r4); padding: var(--s6) var(--s5); text-align: center;
  transition: all var(--t-base); box-shadow: var(--shadow-xs);
}
.award-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(184,146,42,.3); }
.award-icon {
  width: 56px; height: 56px; border-radius: var(--r4);
  background: linear-gradient(135deg, rgba(184,146,42,.12), rgba(184,146,42,.06));
  border: 1px solid rgba(184,146,42,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s4);
}
.award-icon svg { width: 28px; height: 28px; color: var(--gold-light); }
.award-title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: var(--s1); }
.award-desc   { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: var(--s3); }
.award-year   { font-size: 11px; font-weight: 800; color: var(--gold); letter-spacing: 1px; }

/* ── LAYER 22: FAQ SECTION ────────────────────────────────── */
#vso-faq { background: var(--surface); }
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: var(--s10); align-items: start; }
.faq-sidebar { position: sticky; top: 90px; }
.faq-sidebar-heading { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: var(--s4); line-height: 1.2; }
.faq-sidebar-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--s6); }
.faq-cat-list { display: flex; flex-direction: column; gap: var(--s2); }
.faq-cat-btn {
  display: flex; align-items: center; gap: var(--s3); padding: 10px var(--s4);
  border: 1.5px solid var(--border); border-radius: var(--r3); background: var(--surface);
  cursor: pointer; font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  color: var(--text-secondary); text-align: left; transition: all var(--t-fast);
}
.faq-cat-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.faq-cat-btn:hover  { border-color: var(--crimson); color: var(--crimson); }
.faq-cat-btn.active { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.faq-accordion {}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4); padding: var(--s5) 0; cursor: pointer;
  background: none; border: none; text-align: left;
  font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--ink);
  transition: color var(--t-fast);
}
.faq-q-btn:hover { color: var(--crimson); }
.faq-q-btn.open  { color: var(--crimson); }
.faq-icon-btn {
  width: 28px; height: 28px; border-radius: 50%; background: var(--off-white);
  border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--t-base); color: var(--text-muted);
}
.faq-icon-btn svg { width: 14px; height: 14px; }
.faq-q-btn.open .faq-icon-btn { background: var(--crimson); border-color: var(--crimson); color: white; transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 var(--s5); font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.faq-answer.open { display: block; }

/* ── LAYER 23: SOCIAL UPDATES ─────────────────────────────── */
#vso-social { background: var(--off-white); }
.social-platforms-row { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s5); margin-bottom: var(--s8); }
.social-plat-card {
  border-radius: var(--r4); padding: var(--s7) var(--s5); text-align: center;
  text-decoration: none; transition: all var(--t-base); position: relative; overflow: hidden;
}
.social-plat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.spc-instagram { background: linear-gradient(135deg, #405DE6, #5851DB 25%, #833AB4 50%, #C13584 75%, #FD1D1D); }
.spc-twitter   { background: linear-gradient(135deg, #14171A, #000); }
.spc-youtube   { background: linear-gradient(135deg, #FF0000, #CC0000); }
.spc-facebook  { background: linear-gradient(135deg, #1877F2, #0C63D4); }
.spc-icon { width: 44px; height: 44px; margin: 0 auto var(--s4); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.15); border-radius: var(--r3); }
.spc-icon svg { width: 24px; height: 24px; color: white; }
.spc-name      { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: white; margin-bottom: 2px; }
.spc-count     { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: white; }
.spc-lbl       { font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.spc-follow    { display: inline-block; margin-top: var(--s4); padding: 6px 16px; background: rgba(255,255,255,.18); color: white; border-radius: var(--r-full); font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; transition: background var(--t-fast); }
.spc-follow:hover { background: rgba(255,255,255,.32); color: white; }
.social-feed { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s3); }
.social-post {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r3); overflow: hidden; text-decoration: none; display: block;
  transition: all var(--t-base);
}
.social-post:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.social-post-img {
  aspect-ratio: 1; background: var(--navy);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.social-post-img img { width: 100%; height: 100%; object-fit: cover; }
.social-post-img svg { width: 32px; height: 32px; color: rgba(255,255,255,.15); }
.social-post-meta { padding: var(--s3) var(--s4); display: flex; align-items: center; justify-content: space-between; }
.social-post-likes { font-size: 12px; font-weight: 700; color: var(--text-secondary); display: flex; align-items: center; gap: 4px; }
.social-post-likes svg { width: 12px; height: 12px; color: var(--crimson); }
.social-post-type { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; font-weight: 700; }

/* ── LAYER 24: POPULAR & RELATED ARTICLES ────────────────── */
#vso-popular { background: var(--surface); }
.popular-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s5); }
.article-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r4); overflow: hidden; text-decoration: none; display: block;
  transition: all var(--t-base); box-shadow: var(--shadow-xs);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-dark); }
.article-card-img {
  aspect-ratio: 16/9; overflow: hidden; background: var(--navy); position: relative;
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-img-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.article-card-img-ph svg { width: 40px; height: 40px; color: rgba(255,255,255,.1); }
.article-card-cat {
  position: absolute; top: var(--s3); left: var(--s3);
  background: var(--crimson); color: white;
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px;
  padding: 3px 8px; text-transform: uppercase;
}
.article-rank {
  position: absolute; top: var(--s3); right: var(--s3);
  width: 28px; height: 28px; background: rgba(10,15,30,.8);
  border-radius: var(--r2); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--gold-light);
}
.article-card-body { padding: var(--s5); }
.article-card-title {
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  color: var(--ink); line-height: 1.4; margin-bottom: var(--s3);
}
.article-card-title:hover { color: var(--crimson); }
.article-card-meta { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.article-card-meta span { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.article-card-meta svg { width: 11px; height: 11px; }

/* ── LAYER 25: SINGLE POST ────────────────────────────────── */
.post-hero-section {
  background: var(--grad-ink); padding: var(--s10) 0 var(--s9); position: relative; overflow: hidden;
}
.post-hero-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px;
  background: var(--off-white); clip-path: ellipse(60% 100% at 50% 100%);
}
.post-breadcrumb { display: flex; align-items: center; gap: var(--s2); font-size: 12px; margin-bottom: var(--s5); }
.post-breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--t-fast); }
.post-breadcrumb a:hover { color: rgba(255,255,255,.7); }
.post-breadcrumb svg { width: 12px; height: 12px; color: rgba(255,255,255,.25); }
.post-breadcrumb span { color: rgba(255,255,255,.25); }
.post-category-label { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--crimson); margin-bottom: var(--s3); }
.post-main-title {
  font-family: var(--font-display); font-size: clamp(24px, 4.5vw, 46px);
  font-weight: 700; color: var(--white); line-height: 1.2;
  max-width: 800px; margin-bottom: var(--s6);
}
.post-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s5); }
.post-author-chip { display: flex; align-items: center; gap: var(--s3); }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--crimson); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: white; overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name  { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); }
.author-role  { font-size: 11px; color: rgba(255,255,255,.4); }
.post-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,.4); }
.post-meta-item svg { width: 13px; height: 13px; }
.post-meta-divider { width: 1px; height: 16px; background: rgba(255,255,255,.1); }

/* Post Body Layout */
.post-body-section { background: var(--off-white); padding: var(--s9) 0 var(--s11); }
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: var(--s8); align-items: start; }
.post-featured-img {
  border-radius: var(--r4); overflow: hidden; margin-bottom: var(--s7);
  box-shadow: var(--shadow-lg); aspect-ratio: 16/9; background: var(--navy);
}
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-content { background: var(--surface); border-radius: var(--r4); padding: var(--s8); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.post-content h2 { font-family: var(--font-display); font-size: clamp(20px,2.8vw,28px); font-weight: 700; color: var(--ink); margin: var(--s8) 0 var(--s4); padding-bottom: var(--s3); border-bottom: 1.5px solid var(--border); }
.post-content h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--ink); margin: var(--s7) 0 var(--s3); padding-left: var(--s4); border-left: 2px solid var(--crimson); }
.post-content p  { font-size: 16px; color: var(--text-secondary); line-height: 1.9; margin-bottom: var(--s5); }
.post-content ul, .post-content ol { margin: var(--s4) 0 var(--s5) var(--s7); }
.post-content li { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: var(--s2); }
.post-content blockquote { margin: var(--s7) 0; padding: var(--s5) var(--s7); background: var(--off-white); border-left: 3px solid var(--crimson); border-radius: 0 var(--r3) var(--r3) 0; font-family: var(--font-display); font-size: 18px; font-style: italic; color: var(--ink); line-height: 1.55; }
.post-content table { width: 100%; border-collapse: collapse; margin: var(--s5) 0; font-size: 14px; }
.post-content th { background: var(--navy); color: rgba(255,255,255,.7); padding: 10px 14px; text-align: left; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.post-content td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text-primary); }
.post-content a { color: var(--crimson); text-decoration: underline; text-underline-offset: 3px; }

/* Post Tags */
.post-tags-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s7); padding-top: var(--s6); border-top: 1px solid var(--border); }
.post-tag { padding: 5px 12px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-full); font-size: 12px; color: var(--text-secondary); text-decoration: none; transition: all var(--t-fast); }
.post-tag:hover { background: var(--crimson); color: white; border-color: var(--crimson); }

/* Share Bar */
.post-share-bar { display: flex; align-items: center; gap: var(--s5); flex-wrap: wrap; margin-top: var(--s7); padding: var(--s5) var(--s6); background: var(--navy); border-radius: var(--r3); }
.share-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.share-btns  { display: flex; gap: var(--s3); flex-wrap: wrap; }
.share-btn   { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--r2); font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; cursor: pointer; border: none; text-decoration: none; transition: all var(--t-fast); }
.share-btn svg { width: 13px; height: 13px; }
.share-btn:hover { transform: translateY(-2px); }
.sbtn-wa { background: #25D366; color: white; }
.sbtn-tw { background: #000; color: white; }
.sbtn-fb { background: #1877F2; color: white; }
.sbtn-cp { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }

/* Post Sidebar */
.post-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: var(--s5); }
.sidebar-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r4); padding: var(--s5); box-shadow: var(--shadow-xs); }
.sidebar-block-title { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); margin-bottom: var(--s4); padding-bottom: var(--s3); border-bottom: 1.5px solid var(--crimson); display: inline-block; }
.sidebar-nav-item { display: flex; align-items: flex-start; gap: var(--s3); padding: var(--s3) 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: all var(--t-fast); }
.sidebar-nav-item:last-child { border-bottom: none; }
.sidebar-nav-item:hover { padding-left: 4px; }
.sidebar-nav-thumb { width: 60px; height: 48px; border-radius: var(--r2); background: var(--navy); flex-shrink: 0; overflow: hidden; }
.sidebar-nav-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-nav-title { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.sidebar-nav-date  { font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.sidebar-stat-item { display: flex; justify-content: space-between; align-items: center; padding: var(--s2) 0; border-bottom: 1px solid var(--border); }
.sidebar-stat-item:last-child { border-bottom: none; }
.sidebar-stat-key { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.sidebar-stat-val { font-family: var(--font-heading); font-size: 16px; font-weight: 800; color: var(--ink); }

/* ── LAYER 26: ARCHIVE PAGE ───────────────────────────────── */
.archive-hero { background: var(--grad-navy); padding: var(--s8) 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.archive-posts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s6); }

/* ── LAYER 27: FOOTER ─────────────────────────────────────── */
#vso-footer { background: #060A14; color: rgba(255,255,255,.55); }
.footer-main { padding: var(--s11) 0 var(--s9); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s9); }
.footer-brand .logo-name { font-family: var(--font-display); font-size: 24px; color: white; }
.footer-brand .logo-sub  { font-size: 10px; color: var(--crimson); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: var(--s5); margin-top: 2px; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: var(--s5); max-width: 280px; }
.footer-social-icons { display: flex; gap: var(--s3); }
.footer-social-icon { width: 36px; height: 36px; border-radius: var(--r2); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); transition: all var(--t-fast); text-decoration: none; }
.footer-social-icon:hover { background: var(--crimson); border-color: var(--crimson); color: white; }
.footer-social-icon svg { width: 15px; height: 15px; }
.footer-col-title { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: var(--s5); }
.footer-links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: all var(--t-fast); }
.footer-links a:hover { color: rgba(255,255,255,.8); padding-left: 4px; }
.footer-stat-row { display: flex; justify-content: space-between; align-items: center; padding: var(--s2) 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: 12px; }
.footer-stat-row .k { color: rgba(255,255,255,.35); }
.footer-stat-row .v { font-family: var(--font-heading); font-weight: 800; color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: var(--s5) 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s4); }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: var(--s5); }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.25); text-decoration: none; transition: color var(--t-fast); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── LAYER 28: SEARCH OVERLAY ─────────────────────────────── */
#vso-search-overlay {
  position: fixed; inset: 0; z-index: 9999; background: rgba(6,10,20,.97);
  display: none; align-items: flex-start; justify-content: center; padding-top: 20vh;
}
#vso-search-overlay.open { display: flex; }
.search-overlay-inner { width: min(680px, 90vw); }
.search-ol-label { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: var(--s5); text-align: center; }
.search-ol-form { display: flex; border-bottom: 1.5px solid rgba(255,255,255,.15); padding-bottom: var(--s4); margin-bottom: var(--s7); align-items: center; }
.search-ol-input { flex: 1; background: none; border: none; font-family: var(--font-display); font-size: clamp(28px,5vw,42px); color: white; outline: none; letter-spacing: -.5px; }
.search-ol-input::placeholder { color: rgba(255,255,255,.2); }
.search-ol-close { background: none; border: none; color: rgba(255,255,255,.35); cursor: pointer; padding: 0 var(--s4); transition: color var(--t-fast); }
.search-ol-close:hover { color: white; }
.search-ol-close svg { width: 24px; height: 24px; }
.search-trending { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; }
.search-trend-tag { padding: 6px 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-full); font-size: 12px; color: rgba(255,255,255,.55); cursor: pointer; transition: all var(--t-fast); }
.search-trend-tag:hover { background: var(--crimson); border-color: var(--crimson); color: white; }

/* ── LAYER 29: MOBILE DRAWER ──────────────────────────────── */
#vso-mobile-menu {
  position: fixed; inset: 0; z-index: 9998; background: var(--navy);
  transform: translateX(-100%); transition: transform var(--t-slow);
  overflow-y: auto; padding: var(--s6) var(--s6) var(--s9);
}
#vso-mobile-menu.open { transform: translateX(0); }
.mob-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s8); }
.mob-close-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); border: none; color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.mob-close-btn svg { width: 18px; height: 18px; }
.mob-nav-links { display: flex; flex-direction: column; }
.mob-nav-links a { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: rgba(255,255,255,.65); text-decoration: none; padding: var(--s4) 0; border-bottom: 1px solid rgba(255,255,255,.05); display: flex; justify-content: space-between; align-items: center; transition: all var(--t-fast); }
.mob-nav-links a:hover { color: white; padding-left: var(--s3); }
.mob-nav-links a svg { width: 18px; height: 18px; opacity: .3; }

/* ── LAYER 30: LANGUAGE CONTENT TOGGLE ───────────────────── */
.c-en { display: block; } .c-hi { display: none; }
.lang-hi .c-en { display: none; } .lang-hi .c-hi { display: block; }
.ic-en { display: inline; } .ic-hi { display: none; }
.lang-hi .ic-en { display: none; } .lang-hi .ic-hi { display: inline; }

/* ── LAYER 31: SCROLL ANIMATIONS ─────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ── LAYER 32: BACK TO TOP ────────────────────────────────── */
#vso-btt {
  position: fixed; bottom: var(--s6); right: var(--s6); z-index: 800;
  width: 44px; height: 44px; background: var(--navy-mid); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r2); color: rgba(255,255,255,.65); cursor: pointer;
  display: none; align-items: center; justify-content: center;
  transition: all var(--t-base); box-shadow: var(--shadow-md);
}
#vso-btt:hover { background: var(--crimson); border-color: var(--crimson); color: white; transform: translateY(-2px); }
#vso-btt svg { width: 18px; height: 18px; }

/* ── LAYER 33: PAGINATION ─────────────────────────────────── */
.vso-pagination { display: flex; align-items: center; justify-content: center; gap: var(--s2); margin-top: var(--s8); flex-wrap: wrap; }
.vso-pagination .page-numbers { width: 40px; height: 40px; border-radius: var(--r2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--text-secondary); text-decoration: none; transition: all var(--t-fast); }
.vso-pagination .page-numbers:hover { border-color: var(--crimson); color: var(--crimson); }
.vso-pagination .page-numbers.current { background: var(--crimson); border-color: var(--crimson); color: white; }
.vso-pagination .prev, .vso-pagination .next { width: auto; padding: 0 var(--s4); display: flex; align-items: center; gap: var(--s2); }

/* ── LAYER 34: RESPONSIVE BREAKPOINTS ────────────────────── */
@media (max-width: 1200px) {
  .stats-bar-inner { grid-template-columns: repeat(3,1fr); }
  .awards-grid     { grid-template-columns: repeat(2,1fr); }
  .social-feed     { grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: var(--s8); }
}

@media (max-width: 1024px) {
  #vso-nav { display: none; }
  .hamburger-btn { display: flex !important; }
  .hero-content-grid { grid-template-columns: 1fr; }
  .hero-profile-panel { max-width: 380px; margin: 0 auto; }
  .bio-grid    { grid-template-columns: 1fr; }
  .bio-profile-card { position: static; max-width: 360px; }
  .faq-layout  { grid-template-columns: 1fr; }
  .videos-layout { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .records-grid   { grid-template-columns: repeat(2,1fr); }
  .upcoming-grid  { grid-template-columns: repeat(2,1fr); }
  .popular-grid   { grid-template-columns: repeat(2,1fr); }
  .social-platforms-row { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry { grid-template-columns: repeat(2,1fr); }
  .gal-item:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hero-stats-strip { grid-template-columns: repeat(2,1fr); }
  .stats-bar-inner  { grid-template-columns: repeat(2,1fr); }
  .news-grid        { grid-template-columns: 1fr; }
  .news-featured    { grid-row: auto; }
  .records-grid     { grid-template-columns: 1fr; }
  .upcoming-grid    { grid-template-columns: 1fr; }
  .popular-grid     { grid-template-columns: 1fr; }
  .archive-posts-grid { grid-template-columns: 1fr; }
  .social-platforms-row { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .stats-summary-grid { grid-template-columns: repeat(2,1fr); }
  #vso-topbar       { display: none; }
  .post-share-bar   { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 var(--s4); }
  .hero-actions { flex-direction: column; }
  .hero-stats-strip { grid-template-columns: repeat(2,1fr); }
  .stats-bar-inner  { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry  { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .awards-grid      { grid-template-columns: 1fr; }
  .social-feed      { grid-template-columns: repeat(2,1fr); }
  .stats-summary-grid { grid-template-columns: 1fr; }
}

/* ── LAYER 35: GENERATEPRESS OVERRIDES ───────────────────── */
.site-header, .main-navigation, .site-header .header-widget { display: none !important; }
#page { background: transparent; }
.entry-title { display: none; }
.generate-columns-container { display: block !important; }

/* ── LAYER 36: PRINT ──────────────────────────────────────── */
@media print {
  #vso-topbar, #vso-header, #vso-mobile-menu, #vso-search-overlay,
  #vso-ticker, #vso-gallery, #vso-videos, #vso-social, #vso-btt { display: none !important; }
  body { background: white; color: black; }
  .post-content { box-shadow: none; border: none; }
}
