/*
Theme Name:     Vaibhav Sooryavanshi
Theme URI:      https://vaibhavsooryavanshi.in
Description:    Premium bilingual (English/Hindi) sports biography portal for Vaibhav Sooryavanshi — India's youngest cricket sensation. Built as a GeneratePress Child Theme with Schema.org markup, IPL stats, career timeline, and full SEO optimization.
Author:         VS Media Team
Author URI:     https://vaibhavsooryavanshi.in
Template:       generatepress
Version:        1.0.0
Requires PHP:   7.4
Text Domain:    vs-theme
Tags:           cricket, sports, biography, bilingual, seo, mobile-first, child-theme
License:        GPL v2 or later
License URI:    http://www.gnu.org/licenses/gpl-2.0.html
*/

/* =====================================================
   VAIBHAV SOORYAVANSHI - PREMIUM SPORTS PORTAL THEME
   ===================================================== */

/* ── 1. CSS VARIABLES ───────────────────────────────── */
:root {
  --vs-navy:        #081525;
  --vs-navy-light:  #0F2240;
  --vs-orange:      #FF5A1F;
  --vs-orange-dark: #E04510;
  --vs-gold:        #FFC107;
  --vs-gold-light:  #FFD54F;
  --vs-white:       #FFFFFF;
  --vs-off-white:   #F5F6FA;
  --vs-light-grey:  #EDF0F7;
  --vs-mid-grey:    #A0ADBA;
  --vs-dark-grey:   #4A5568;
  --vs-text:        #1A1E2E;
  --vs-card-bg:     #FFFFFF;
  --vs-border:      #E2E8F0;

  /* RR Colors */
  --rr-pink:        #EA1A8C;
  --rr-blue:        #254AA5;

  /* Typography */
  --font-display:   'Bebas Neue', 'Impact', sans-serif;
  --font-heading:   'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:      'Hind', 'Noto Sans', sans-serif;
  --font-mono:      'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.20);

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .15s ease;

  /* Gradients */
  --grad-navy:  linear-gradient(135deg, #081525 0%, #0F2240 100%);
  --grad-orange: linear-gradient(135deg, #FF5A1F 0%, #FF8C00 100%);
  --grad-gold:  linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
  --grad-hero:  linear-gradient(160deg, #081525 0%, #0F2240 40%, #1a3a6e 100%);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--vs-text);
  background: var(--vs-off-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vs-orange); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--vs-orange-dark); }

/* ── 3. TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vs-navy);
  letter-spacing: .5px;
}

.display-heading {
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vs-orange);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--vs-navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}

.section-title-dark {
  color: var(--vs-white);
}

/* Hindi language typography boost */
.lang-hi .section-title,
.lang-hi h1, .lang-hi h2, .lang-hi h3 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
}

/* ── 4. UTILITY CLASSES ─────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.text-center { text-align: center; }
.text-orange { color: var(--vs-orange); }
.text-gold { color: var(--vs-gold); }
.text-white { color: var(--vs-white); }

.bg-navy { background: var(--vs-navy); }
.bg-navy-light { background: var(--vs-navy-light); }
.bg-white { background: var(--vs-white); }
.bg-off-white { background: var(--vs-off-white); }

.section-pad { padding: var(--space-3xl) 0; }
.section-pad-sm { padding: var(--space-2xl) 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--vs-orange);
  color: var(--vs-white);
  border-color: var(--vs-orange);
}
.btn-primary:hover {
  background: var(--vs-orange-dark);
  border-color: var(--vs-orange-dark);
  color: var(--vs-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,90,31,.4);
}

.btn-outline {
  background: transparent;
  color: var(--vs-white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: var(--vs-white);
  color: var(--vs-navy);
  border-color: var(--vs-white);
}

.btn-gold {
  background: var(--vs-gold);
  color: var(--vs-navy);
  border-color: var(--vs-gold);
}
.btn-gold:hover {
  background: var(--vs-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,193,7,.4);
  color: var(--vs-navy);
}

.card {
  background: var(--vs-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.badge-orange { background: rgba(255,90,31,.15); color: var(--vs-orange); }
.badge-gold   { background: rgba(255,193,7,.15);  color: #B8860B; }
.badge-navy   { background: rgba(8,21,37,.10);    color: var(--vs-navy); }
.badge-green  { background: rgba(16,185,129,.12); color: #059669; }
.badge-rr     { background: linear-gradient(90deg,var(--rr-pink),var(--rr-blue)); color: white; }

/* Divider with label */
.divider-line {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.divider-line::before,
.divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--vs-border);
}
.divider-line span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vs-mid-grey);
}

/* ── 5. TOP BAR ─────────────────────────────────────── */
#vs-topbar {
  background: var(--vs-orange);
  padding: 6px 0;
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: .5px;
  overflow: hidden;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-ticker {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  overflow: hidden;
  flex: 1;
}

.ticker-label {
  background: var(--vs-navy);
  color: white;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-text {
  overflow: hidden;
  flex: 1;
}

.ticker-text marquee {
  font-size: 12px;
  letter-spacing: .5px;
}

.topbar-lang {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.lang-btn {
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  letter-spacing: .5px;
}

.lang-btn.active { background: var(--vs-navy); color: white; }
.lang-btn:not(.active) { background: rgba(255,255,255,.25); color: white; }
.lang-btn:hover { opacity: .85; }

/* ── 6. SITE HEADER ─────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--vs-navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  transition: var(--transition);
}

#site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.35); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: var(--space-lg);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--vs-orange);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: white;
  letter-spacing: 0;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--vs-orange);
  flex-shrink: 0;
}

.logo-text .logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.logo-text .logo-sub {
  font-size: 10px;
  color: var(--vs-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

#main-nav a {
  color: rgba(255,255,255,.75);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  text-decoration: none;
}

#main-nav a:hover,
#main-nav a.active {
  color: white;
  background: rgba(255,255,255,.1);
}

#main-nav a.nav-highlight {
  background: var(--vs-orange);
  color: white;
  padding: 8px 16px;
}

#main-nav a.nav-highlight:hover {
  background: var(--vs-orange-dark);
}

.header-search-btn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.header-search-btn:hover { background: rgba(255,255,255,.15); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ── 7. HERO SECTION ────────────────────────────────── */
#vs-hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,90,31,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,193,7,.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(15,34,64,.8) 0%, transparent 40%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .5;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  width: 100%;
}

.hero-content { order: 1; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.hero-badge-rr {
  background: linear-gradient(90deg, var(--rr-pink) 0%, var(--rr-blue) 100%);
  color: white;
}
.hero-badge-world {
  background: rgba(255,193,7,.2);
  color: var(--vs-gold);
  border: 1px solid rgba(255,193,7,.3);
}
.hero-badge-live {
  background: rgba(239,68,68,.2);
  color: #FCA5A5;
  border: 1px solid rgba(239,68,68,.3);
  animation: pulse-live 2s ease infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  color: white;
  line-height: .95;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero-name span.orange { color: var(--vs-orange); }

.hero-title-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero-title-text {
  font-family: var(--font-heading);
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-title-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.25);
}

.hero-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255,255,255,.08);
}

.hqs-item {
  background: rgba(8,21,37,.6);
  backdrop-filter: blur(8px);
  padding: var(--space-md);
  text-align: center;
}

.hqs-value {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--vs-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hqs-label {
  font-size: 10px;
  color: rgba(255,255,255,.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

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

/* Hero Profile Card */
.hero-profile-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  order: 2;
}

.hero-card-image {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, rgba(255,90,31,.15) 0%, rgba(8,21,37,.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-card-image .player-silhouette {
  font-size: 160px;
  line-height: 1;
  opacity: .9;
}

.hero-card-image-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(8,21,37,.95) 0%, transparent 100%);
}

.hero-card-team {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 4px;
}

.team-badge {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--rr-pink), var(--rr-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  font-weight: 700;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero-card-stat {
  padding: 12px 16px;
  text-align: center;
  background: rgba(8,21,37,.7);
}

.hero-card-stat .val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--vs-orange);
  line-height: 1;
}

.hero-card-stat .lbl {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── 8. LIVE SCORE BAR ──────────────────────────────── */
#vs-score-bar {
  background: var(--vs-navy-light);
  border-bottom: 2px solid var(--vs-orange);
  padding: 10px 0;
}

.score-bar-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  overflow-x: auto;
  scrollbar-width: none;
}
.score-bar-inner::-webkit-scrollbar { display: none; }

.score-live-label {
  flex-shrink: 0;
  background: #EF4444;
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  animation: pulse-live 2s ease infinite;
}

.score-match-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 4px var(--space-md);
  border-left: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}

.score-team {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.score-run {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--vs-gold);
}

.score-vs {
  font-size: 10px;
  color: var(--vs-mid-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.score-player-highlight {
  background: rgba(255,90,31,.15);
  border: 1px solid rgba(255,90,31,.25);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.score-player-highlight .player-score {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--vs-orange);
}

.score-player-highlight .player-name {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

/* ── 9. STATS OVERVIEW ──────────────────────────────── */
#vs-stats-overview {
  background: var(--vs-navy);
  padding: var(--space-2xl) 0;
}

.stats-overview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}

.stat-overview-item {
  background: rgba(8,21,37,.7);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: var(--transition-fast);
}

.stat-overview-item:hover { background: rgba(255,90,31,.08); }

.stat-overview-value {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--vs-orange);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-overview-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.stat-overview-sub {
  font-size: 10px;
  color: rgba(255,193,7,.6);
  margin-top: 2px;
  font-weight: 600;
}

/* ── 10. LATEST NEWS ────────────────────────────────── */
#vs-latest-news {
  padding: var(--space-3xl) 0;
  background: var(--vs-off-white);
}

.news-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-lg);
}

/* Featured News Card */
.news-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--vs-navy);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-featured-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,21,37,.1) 0%, rgba(8,21,37,.9) 60%, var(--vs-navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}

/* [HOMEPAGE UPDATE] Featured news now supports a real WordPress
   featured image (falls back to the icon above when none is set). */
.news-featured-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.news-featured-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
}

.news-featured-cat {
  background: var(--vs-orange);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.news-featured-title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: white;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.news-meta .dot {
  width: 3px; height: 3px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
}

/* News List */
.news-list-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.news-list-item {
  background: var(--vs-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  transition: var(--transition);
  border: 1px solid var(--vs-border);
  cursor: pointer;
  text-decoration: none;
}

.news-list-item:hover {
  border-color: var(--vs-orange);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.news-list-thumb {
  width: 80px;
  height: 64px;
  background: var(--vs-light-grey);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  overflow: hidden;
}

.news-list-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.news-list-content .news-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vs-orange);
  margin-bottom: 4px;
}

.news-list-content .news-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--vs-navy);
  line-height: 1.4;
  margin-bottom: 4px;
}

.news-list-content .news-time {
  font-size: 11px;
  color: var(--vs-mid-grey);
}

/* ── 11. RECORDS SECTION ────────────────────────────── */
#vs-records {
  background: var(--vs-navy);
  padding: var(--space-3xl) 0;
}

.records-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.record-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.record-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.record-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,193,7,.2);
  transform: translateY(-4px);
}

.record-icon {
  font-size: 36px;
  margin-bottom: var(--space-md);
}

.record-value {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--vs-gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.record-title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: white;
  font-weight: 700;
  margin-bottom: 4px;
}

.record-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.record-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(255,193,7,.15);
  color: var(--vs-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* ── 12. CAREER TIMELINE ────────────────────────────── */
#vs-career {
  padding: var(--space-3xl) 0;
  background: var(--vs-off-white);
}

.timeline-wrapper {
  position: relative;
  padding-left: 60px;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--vs-orange), var(--vs-gold), rgba(255,90,31,.1));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateX(-20px);
  transition: all .5s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--vs-orange);
  border-radius: 50%;
  border: 3px solid var(--vs-off-white);
  box-shadow: 0 0 0 2px var(--vs-orange);
}

.timeline-year {
  position: absolute;
  left: -60px;
  top: 4px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--vs-orange);
  letter-spacing: 1px;
}

.timeline-card {
  background: var(--vs-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--vs-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-card:hover {
  border-color: var(--vs-orange);
  box-shadow: var(--shadow-md);
}

.timeline-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--vs-navy);
}

.timeline-desc {
  font-size: 14px;
  color: var(--vs-dark-grey);
  line-height: 1.6;
}

.timeline-stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-sm);
}

.timeline-chip {
  background: rgba(255,90,31,.08);
  color: var(--vs-orange);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: .5px;
}

/* ── 13. STATS TABLES ───────────────────────────────── */
#vs-statistics {
  background: var(--vs-white);
  padding: var(--space-3xl) 0;
}

.stats-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--vs-border);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
  scrollbar-width: none;
}
.stats-tabs::-webkit-scrollbar { display: none; }

.stats-tab {
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--vs-dark-grey);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: var(--transition-fast);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.stats-tab:hover { color: var(--vs-orange); }
.stats-tab.active {
  color: var(--vs-orange);
  border-bottom-color: var(--vs-orange);
}

.stats-table-wrap { overflow-x: auto; }

.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.stats-table thead tr {
  background: var(--vs-navy);
}

.stats-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}

.stats-table th:first-child { border-radius: 0; }

.stats-table tbody tr {
  border-bottom: 1px solid var(--vs-border);
  transition: var(--transition-fast);
}

.stats-table tbody tr:hover { background: rgba(255,90,31,.04); }

.stats-table td {
  padding: 12px 16px;
  color: var(--vs-text);
}

.stats-table td.highlight {
  font-weight: 700;
  color: var(--vs-orange);
}

.stats-table td.match-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.stats-performance-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.perf-bar {
  flex: 1;
  height: 6px;
  background: var(--vs-light-grey);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.perf-bar-fill {
  height: 100%;
  background: var(--grad-orange);
  border-radius: var(--radius-full);
  transition: width 1.5s ease;
}

/* ── 14. BIOGRAPHY ──────────────────────────────────── */
#vs-biography {
  background: var(--vs-off-white);
  padding: var(--space-3xl) 0;
}

.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.bio-profile-card {
  background: var(--vs-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}

.bio-profile-image {
  background: var(--grad-navy);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  position: relative;
  overflow: hidden;
}

.bio-profile-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,21,37,.7) 0%, transparent 50%);
}

.bio-info-list {
  padding: var(--space-lg);
}

.bio-info-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--vs-border);
  gap: var(--space-md);
}

.bio-info-item:last-child { border-bottom: none; }

.bio-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vs-mid-grey);
  flex-shrink: 0;
}

.bio-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--vs-navy);
  text-align: right;
}

.bio-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--vs-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.bio-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--vs-navy);
  margin: var(--space-xl) 0 var(--space-md);
  padding-left: var(--space-md);
  border-left: 3px solid var(--vs-orange);
}

.bio-content p {
  font-size: 15px;
  color: var(--vs-dark-grey);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.bio-quote {
  background: var(--vs-navy);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  position: relative;
}

.bio-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(255,90,31,.3);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.bio-quote blockquote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: white;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.bio-quote cite {
  display: block;
  margin-top: var(--space-md);
  font-style: normal;
  font-size: 13px;
  color: var(--vs-orange);
  font-weight: 700;
}

/* ── 15. ACHIEVEMENTS ───────────────────────────────── */
#vs-achievements {
  background: var(--vs-navy-light);
  padding: var(--space-3xl) 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.achievement-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
}

.achievement-item:hover {
  background: rgba(255,193,7,.06);
  border-color: rgba(255,193,7,.2);
  transform: translateY(-4px);
}

.achievement-trophy {
  font-size: 40px;
  margin-bottom: var(--space-md);
}

.achievement-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.achievement-desc {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.achievement-year {
  margin-top: var(--space-sm);
  font-size: 11px;
  font-weight: 700;
  color: var(--vs-gold);
  letter-spacing: 1px;
}

/* ── 16. GALLERY SECTION ────────────────────────────── */
#vs-gallery {
  padding: var(--space-3xl) 0;
  background: var(--vs-off-white);
}

.gallery-filter-bar {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--vs-border);
  background: var(--vs-white);
  color: var(--vs-dark-grey);
  transition: var(--transition-fast);
}

.gallery-filter.active,
.gallery-filter:hover {
  background: var(--vs-orange);
  color: white;
  border-color: var(--vs-orange);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: var(--space-sm);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--vs-navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: var(--transition);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; font-size: 80px; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }

.gallery-item:hover { transform: scale(.98); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,21,37,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay svg { color: white; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(to top, rgba(8,21,37,.85) 0%, transparent 100%);
  font-size: 11px;
  font-weight: 600;
  color: white;
  letter-spacing: .5px;
  transform: translateY(100%);
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── 17. VIDEOS SECTION ─────────────────────────────── */
#vs-videos {
  background: var(--vs-navy);
  padding: var(--space-3xl) 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
}

.video-featured {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumb-emoji {
  font-size: 48px;
  opacity: .5;
}

.video-play-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(255,90,31,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,90,31,.4);
}

.video-thumb:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--vs-orange);
}

.video-play-btn::after {
  content: '';
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.video-info { padding: var(--space-md) var(--space-lg); }

.video-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: white;
  font-weight: 700;
  line-height: 1.3;
}

.video-playlist {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.video-playlist-item {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  text-decoration: none;
}

.video-playlist-item:hover,
.video-playlist-item.active {
  background: rgba(255,90,31,.08);
  border-color: rgba(255,90,31,.2);
}

.video-playlist-thumb {
  width: 80px;
  height: 50px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
}

.video-playlist-play {
  position: absolute;
  width: 20px; height: 20px;
  background: rgba(255,90,31,.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-playlist-play::after {
  content: '';
  border-left: 7px solid white;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 2px;
}

.video-playlist-info { flex: 1; }
.video-playlist-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
  margin-bottom: 2px;
}
.video-playlist-views {
  font-size: 11px;
  color: rgba(255,255,255,.35);
}

/* ── 18. SOCIAL MEDIA SECTION ───────────────────────── */
#vs-social {
  padding: var(--space-3xl) 0;
  background: var(--vs-white);
}

.social-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.social-platform-card {
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.social-platform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.sp-instagram { background: linear-gradient(135deg, #405DE6 0%, #5851DB 20%, #833AB4 40%, #C13584 60%, #E1306C 80%, #FD1D1D 100%); }
.sp-twitter   { background: linear-gradient(135deg, #000000, #14171A); }
.sp-youtube   { background: linear-gradient(135deg, #FF0000, #CC0000); }
.sp-facebook  { background: linear-gradient(135deg, #1877F2, #166FE5); }

.sp-icon { font-size: 40px; margin-bottom: var(--space-md); }
.sp-platform { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: white; margin-bottom: 4px; }
.sp-followers { font-family: var(--font-display); font-size: 28px; color: white; margin-bottom: 4px; }
.sp-label { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.sp-btn {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 6px 16px;
  background: rgba(255,255,255,.2);
  color: white;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}
.sp-btn:hover { background: rgba(255,255,255,.35); color: white; }

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.social-post-card {
  background: var(--vs-off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--vs-border);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.social-post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.social-post-thumb {
  aspect-ratio: 1;
  background: var(--vs-navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.social-post-meta {
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-post-likes { font-size: 12px; font-weight: 600; color: var(--vs-dark-grey); }

/* ── 19. INTERVIEWS ─────────────────────────────────── */
#vs-interviews {
  background: var(--vs-off-white);
  padding: var(--space-3xl) 0;
}

.interviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.interview-card {
  background: var(--vs-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--vs-border);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.interview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--vs-orange);
}

.interview-card-media {
  aspect-ratio: 16/9;
  background: var(--vs-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  position: relative;
}

.interview-source {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(8,21,37,.8);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.interview-card-body {
  padding: var(--space-lg);
}

.interview-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vs-orange);
  margin-bottom: var(--space-sm);
}

.interview-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--vs-navy);
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.interview-excerpt {
  font-size: 13px;
  color: var(--vs-dark-grey);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* ── 20. FAQ SECTION ────────────────────────────────── */
#vs-faq {
  background: var(--vs-white);
  padding: var(--space-3xl) 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.faq-sidebar { position: sticky; top: 90px; }

.faq-sidebar-title {
  font-family: var(--font-display);
  font-size: 32px;
  text-transform: uppercase;
  color: var(--vs-navy);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.faq-sidebar-desc {
  font-size: 14px;
  color: var(--vs-dark-grey);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-cat-btn {
  padding: 10px var(--space-md);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  border: 1.5px solid var(--vs-border);
  background: var(--vs-white);
  color: var(--vs-dark-grey);
  text-align: left;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.faq-cat-btn:hover { border-color: var(--vs-orange); color: var(--vs-orange); }
.faq-cat-btn.active {
  background: var(--vs-orange);
  color: white;
  border-color: var(--vs-orange);
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--vs-border);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--vs-navy);
  transition: var(--transition-fast);
}

.faq-question:hover { color: var(--vs-orange); }
.faq-question.open { color: var(--vs-orange); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vs-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: var(--transition);
  color: var(--vs-navy);
  font-weight: 300;
}

.faq-question.open .faq-icon {
  background: var(--vs-orange);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 var(--space-lg);
  font-size: 15px;
  color: var(--vs-dark-grey);
  line-height: 1.8;
}

.faq-answer.open { display: block; }

/* ── 21. POST/NEWS TEMPLATE ─────────────────────────── */
.post-hero {
  background: var(--grad-navy);
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.post-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: var(--vs-off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--space-lg);
}
.post-breadcrumb a { color: rgba(255,255,255,.45); }
.post-breadcrumb a:hover { color: white; }
.post-breadcrumb span { color: rgba(255,255,255,.25); }

.post-category {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vs-orange);
  margin-bottom: var(--space-sm);
}

.post-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 42px);
  color: white;
  line-height: 1.25;
  margin-bottom: var(--space-lg);
  max-width: 800px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
}

.post-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: 36px;
  height: 36px;
  background: var(--vs-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.post-content-area {
  padding: var(--space-2xl) 0;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-2xl);
  align-items: start;
}

.post-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--vs-dark-grey);
}

.post-body h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--vs-navy);
  margin: var(--space-2xl) 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--vs-border);
}

.post-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--vs-navy);
  margin: var(--space-xl) 0 var(--space-sm);
  padding-left: var(--space-md);
  border-left: 3px solid var(--vs-orange);
}

.post-body p { margin-bottom: var(--space-lg); }

.post-body ul, .post-body ol {
  margin: var(--space-md) 0 var(--space-lg) var(--space-xl);
}
.post-body li { margin-bottom: var(--space-sm); }

.post-sidebar { position: sticky; top: 90px; }

.sidebar-widget {
  background: var(--vs-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--vs-border);
}

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vs-navy);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--vs-orange);
  display: inline-block;
}

.sidebar-quick-fact {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--vs-border);
}
.sidebar-quick-fact:last-child { border-bottom: none; }

.sqf-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.sqf-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--vs-mid-grey); font-weight: 700; }
.sqf-value { font-size: 14px; font-weight: 700; color: var(--vs-navy); margin-top: 2px; }

.related-posts-list { display: flex; flex-direction: column; gap: var(--space-sm); }

.related-post-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  text-decoration: none;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}
.related-post-item:hover { background: var(--vs-off-white); border-color: var(--vs-border); }

.related-post-thumb {
  width: 60px;
  height: 48px;
  background: var(--vs-light-grey);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.related-post-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--vs-navy);
  line-height: 1.4;
}

.related-post-date { font-size: 11px; color: var(--vs-mid-grey); margin-top: 2px; }

/* Share Bar */
.post-share-bar {
  background: var(--vs-navy);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.share-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}

.share-btns { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  text-decoration: none;
}

.share-whatsapp { background: #25D366; color: white; }
.share-twitter  { background: #000000; color: white; }
.share-facebook { background: #1877F2; color: white; }
.share-copy     { background: rgba(255,255,255,.1); color: white; }

.share-btn:hover { opacity: .85; transform: translateY(-2px); color: white; }

/* ── 22. FOOTER ─────────────────────────────────────── */
#site-footer {
  background: #060E1C;
  color: rgba(255,255,255,.6);
  padding: var(--space-3xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo-name { font-family: var(--font-display); font-size: 28px; color: white; letter-spacing: 2px; }
.footer-brand .logo-sub { font-size: 11px; color: var(--vs-orange); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: var(--space-md); }

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--space-lg);
}

.footer-social-links {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
}
.footer-social-link:hover { background: var(--vs-orange); border-color: var(--vs-orange); }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--vs-orange); padding-left: 4px; }

.footer-stat-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 13px;
}
.footer-stat-item .key { color: rgba(255,255,255,.4); }
.footer-stat-item .val { font-weight: 700; color: var(--vs-gold); font-family: var(--font-heading); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-copyright a { color: var(--vs-orange); }

.footer-legal-links {
  display: flex;
  gap: var(--space-md);
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-legal-links a:hover { color: white; }

/* ── 23. HINDI LANGUAGE OVERRIDES ───────────────────── */
.lang-hi .topbar-ticker marquee { font-family: var(--font-body); }

/* Language Switcher Widget */
.lang-toggle-wrap {
  display: flex;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.lang-toggle-btn {
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.5);
  transition: var(--transition-fast);
}

.lang-toggle-btn.active {
  background: var(--vs-orange);
  color: white;
}

/* ── 24. MOBILE SEARCH OVERLAY ──────────────────────── */
#search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,21,37,.97);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
}

#search-overlay.open { display: flex; }

.search-overlay-inner {
  width: min(700px, 90vw);
  text-align: center;
}

.search-overlay-label {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,.3);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.search-overlay-input-wrap {
  display: flex;
  border-bottom: 2px solid rgba(255,255,255,.2);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xl);
}

.search-overlay-input {
  flex: 1;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 40px;
  color: white;
  outline: none;
  letter-spacing: 2px;
}
.search-overlay-input::placeholder { color: rgba(255,255,255,.2); }

.search-overlay-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 32px;
  cursor: pointer;
  padding: 0 var(--space-md);
  transition: var(--transition-fast);
}
.search-overlay-close:hover { color: white; }

.search-trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.search-tag {
  padding: 6px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,.6);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.search-tag:hover { background: var(--vs-orange); border-color: var(--vs-orange); color: white; }

/* ── 25. MOBILE MENU ────────────────────────────────── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--vs-navy);
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: var(--space-xl);
}

#mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.mobile-close-btn {
  background: rgba(255,255,255,.1);
  border: none;
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}

.mobile-nav-links { display: flex; flex-direction: column; }

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  letter-spacing: .5px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links a:hover { color: white; padding-left: 8px; }

/* ── 26. SCROLL ANIMATIONS ──────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal:nth-child(2) { transition-delay: .1s; }
.scroll-reveal:nth-child(3) { transition-delay: .2s; }
.scroll-reveal:nth-child(4) { transition-delay: .3s; }
.scroll-reveal:nth-child(5) { transition-delay: .4s; }
.scroll-reveal:nth-child(6) { transition-delay: .5s; }

/* ── 27. HINDI CONTENT (display toggle) ─────────────── */
.content-en { display: block; }
.content-hi { display: none; }
.lang-hi .content-en { display: none; }
.lang-hi .content-hi { display: block; }

/* ── 28. RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1200px) {
  .stats-overview-grid { grid-template-columns: repeat(3, 1fr); }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .social-platforms { grid-template-columns: repeat(2, 1fr); }
  .social-feed-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  #main-nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-profile-card { max-width: 400px; margin: 0 auto; }
  .hero-quick-stats { grid-template-columns: repeat(2, 1fr); }

  .news-layout { grid-template-columns: 1fr; }
  .records-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-profile-card { position: static; }
  .faq-layout { grid-template-columns: 1fr; }
  .interviews-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 768px) {
  .stats-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .records-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-quick-stats { grid-template-columns: 1fr 1fr; }
  .achievements-grid { grid-template-columns: 1fr 1fr; }
  .social-platforms { grid-template-columns: 1fr 1fr; }
  .social-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .interviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-ticker { display: none; }

  .hero-name { font-size: 52px; }
  .section-title { font-size: 28px; }

  .post-share-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .hero-actions { flex-direction: column; }
  .hero-badges { gap: 4px; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
  .stats-overview-grid { grid-template-columns: repeat(3, 1fr); }
  .achievements-grid { grid-template-columns: 1fr; }
  .social-platforms { grid-template-columns: 1fr; }
}

/* ── 29. PRINT ──────────────────────────────────────── */
@media print {
  #vs-topbar, #site-header, #mobile-menu, #search-overlay,
  #vs-score-bar, #vs-gallery, #vs-videos, #vs-social { display: none; }
  body { background: white; color: black; }
}

/* ── 30. GeneratePress OVERRIDES ────────────────────── */
.site-header, .site-header .header-widget, .main-navigation { display: none !important; }
#page, .site { background: transparent; }
.entry-title { display: none; }
