/* ============================================================
   Jan Gan Man 24x7 — Design System
   CNBC-style newsroom: dark, clean, red accent + purple/gold brand
   ============================================================ */

:root {
  /* Brand */
  --brand-purple: #5C2A86;
  --brand-purple-deep: #33135A;
  --brand-gold: #F2B233;
  --brand-pink: #E5197E;

  /* News red accent */
  --red: #E1242F;
  --red-dark: #B71722;
  --live: #FF2A2A;

  /* Surfaces (dark newsroom) */
  --bg: #0B0E15;
  --surface: #141925;
  --surface-2: #1B2130;
  --surface-3: #232B3C;
  --border: #2A3242;
  --border-soft: #1F2735;

  /* Text */
  --text: #F4F6FB;
  --text-muted: #9BA6B8;
  --text-dim: #6F7A8C;

  /* Type */
  --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-deva: "Noto Sans Devanagari", "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1280px;
  --gap: 24px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);

  --header-h: 64px;
}

/* Hindi mode: route headings/body through a Devanagari-capable stack */
html[lang="hi"] body,
html[lang="hi"] .h-display,
html[lang="hi"] h1,
html[lang="hi"] h2,
html[lang="hi"] h3,
html[lang="hi"] .btn,
html[lang="hi"] .nav a {
  font-family: var(--font-deva);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.2px;
  margin: 0 0 0.5em;
}

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Utility top bar ---------- */
.topbar {
  background: var(--brand-purple-deep);
  border-bottom: 1px solid rgba(242, 178, 51, 0.25);
  font-size: 12.5px;
  color: #D9CFE8;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px; gap: 16px;
}
.topbar .date { letter-spacing: 0.4px; text-transform: uppercase; font-weight: 500; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a { color: #D9CFE8; opacity: 0.85; transition: opacity .2s, color .2s; }
.topbar-social a:hover { opacity: 1; color: var(--brand-gold); }
.topbar-social svg { width: 16px; height: 16px; }

/* Language toggle */
.lang-toggle { display: inline-flex; border: 1px solid rgba(242,178,51,0.4); border-radius: 999px; overflow: hidden; }
.lang-toggle button {
  background: transparent; border: 0; color: #D9CFE8;
  padding: 3px 11px; font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
  transition: background .2s, color .2s;
}
.lang-toggle button.active { background: var(--brand-gold); color: #33135A; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 14, 21, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; gap: 22px; height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  letter-spacing: 0.5px; color: var(--text);
}
.brand-name .x7 { color: var(--brand-pink); }
.brand-tag {
  font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brand-gold); margin-top: 3px; font-weight: 600;
}
html[lang="hi"] .brand-tag { font-family: var(--font-deva); letter-spacing: 0.5px; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--text-muted); padding: 8px 12px; border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.nav a:hover, .nav a.active { color: var(--text); background: var(--surface-2); }
.nav a.active { box-shadow: inset 0 -2px 0 var(--red); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.search-btn, .menu-btn {
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-muted); width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .15s, border-color .15s;
}
.search-btn:hover, .menu-btn:hover { color: var(--text); border-color: var(--text-dim); }
.menu-btn { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 10px 18px; border-radius: var(--radius-sm); border: 0;
  transition: transform .12s, filter .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-gold { background: var(--brand-gold); color: #33135A; }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-yt { background: #FF0000; color: #fff; }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Breaking ticker ---------- */
.ticker {
  background: var(--surface); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; overflow: hidden;
}
.ticker-label {
  background: var(--red); color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 16px; flex-shrink: 0; position: relative; display: flex; align-items: center; gap: 8px;
}
.ticker-label::after {
  content: ""; position: absolute; right: -10px; top: 0; bottom: 0; width: 0; height: 0;
  border-left: 10px solid var(--red); border-top: 19px solid transparent; border-bottom: 19px solid transparent;
}
.live-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.25} }
.ticker-track-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex; gap: 48px; white-space: nowrap; padding-left: 24px;
  animation: ticker 38s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span { font-size: 14px; color: var(--text-muted); }
.ticker-track span::before { content: "●"; color: var(--brand-gold); margin-right: 12px; font-size: 9px; vertical-align: middle; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section headings ---------- */
.section { padding: 40px 0; }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; gap: 16px;
}
.section-title {
  font-size: 24px; text-transform: uppercase; letter-spacing: 0.6px;
  display: flex; align-items: center; gap: 12px; margin: 0;
}
.section-title::before {
  content: ""; width: 5px; height: 26px; background: var(--red); border-radius: 2px;
}
.section-link { font-size: 13px; font-weight: 600; color: var(--brand-gold); text-transform: uppercase; letter-spacing: 0.5px; }
.section-link:hover { text-decoration: underline; }

/* ---------- Layout grid ---------- */
.layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; margin: 28px 0 8px; }
.hero-main {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); cursor: pointer;
}
.hero-thumb { position: relative; aspect-ratio: 16/9; background: var(--surface-2); }
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-body { padding: 20px 22px 24px; }
.hero-main h2 { font-size: 28px; margin-bottom: 8px; }
.hero-main p { color: var(--text-muted); font-size: 15px; margin: 0; }
.hero-side { display: flex; flex-direction: column; gap: 16px; }
.hero-side .vcard { flex-direction: row; gap: 14px; align-items: stretch; }
.hero-side .vcard .vthumb { width: 150px; flex-shrink: 0; }
.hero-side .vcard .vbody { padding: 4px 0; }

/* Play badge */
.play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(11,14,21,0.15); transition: background .2s;
}
.play-badge svg { width: 58px; height: 58px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.vthumb:hover .play-badge, .hero-thumb:hover .play-badge { background: rgba(11,14,21,0.35); }
.duration-tag {
  position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.85);
  color: #fff; font-size: 12px; font-weight: 600; padding: 2px 7px; border-radius: 4px;
}
.cat-tag {
  position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 4px 9px; border-radius: 4px;
}

/* ---------- Video cards ---------- */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vgrid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.vcard {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .15s, border-color .15s, box-shadow .15s; cursor: pointer;
}
.vcard:hover { transform: translateY(-3px); border-color: var(--border); box-shadow: var(--shadow-sm); }
.vthumb { position: relative; aspect-ratio: 16/9; background: var(--surface-2); overflow: hidden; }
.vthumb img { width: 100%; height: 100%; object-fit: cover; }
.vbody { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vmeta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.4px; }
.vmeta .topic { color: var(--brand-gold); font-weight: 600; }
.vtitle { font-family: var(--font-display); font-weight: 500; font-size: 16.5px; line-height: 1.25; color: var(--text); }
html[lang="hi"] .vtitle { font-family: var(--font-deva); font-weight: 600; font-size: 15.5px; }
.vcard:hover .vtitle { color: #fff; }
.vstats { margin-top: auto; font-size: 12px; color: var(--text-dim); display: flex; gap: 12px; }

/* ---------- Trending topics ---------- */
.topics { display: flex; flex-wrap: wrap; gap: 10px; }
.topic-chip {
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-muted); padding: 8px 15px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; transition: all .15s;
}
.topic-chip:hover, .topic-chip.active { background: var(--red); color: #fff; border-color: var(--red); }
.topic-chip .count { color: var(--text-dim); margin-left: 6px; font-size: 12px; }
.topic-chip:hover .count, .topic-chip.active .count { color: rgba(255,255,255,0.8); }

/* ---------- Sidebar & Ads ---------- */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.widget { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 20px; }
.widget-title {
  font-family: var(--font-display); font-size: 15px; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--text); margin: 0 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 9px;
}
.widget-title::before { content:""; width:4px; height:16px; background: var(--brand-gold); border-radius:2px; }

.ad-slot {
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  border: 1px dashed var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--text-dim); padding: 24px 16px; gap: 6px; overflow: hidden;
}
.ad-slot.ad-300 { min-height: 250px; }
.ad-slot.ad-300-600 { min-height: 600px; }
.ad-slot.ad-leaderboard { min-height: 90px; margin: 8px 0; }
.ad-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); }
.ad-slot strong { color: var(--text-muted); font-family: var(--font-display); font-size: 15px; letter-spacing: 0.5px; }
.ad-slot a { color: var(--brand-gold); font-size: 12.5px; font-weight: 600; }
.ad-slot img { border-radius: var(--radius-sm); }

/* ranked list (most watched) */
.rank-list { display: flex; flex-direction: column; gap: 14px; }
.rank-item { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.rank-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--brand-gold); line-height: 1; width: 26px; flex-shrink: 0; }
.rank-item .rtitle { font-size: 14px; font-weight: 500; line-height: 1.3; color: var(--text-muted); }
.rank-item:hover .rtitle { color: var(--text); }

/* ---------- Newsletter ---------- */
.newsletter {
  background:
    radial-gradient(circle at 0% 0%, rgba(92,42,134,0.55), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(225,36,47,0.4), transparent 55%),
    var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; text-align: center; position: relative; overflow: hidden;
}
.newsletter h2 { font-size: 28px; margin-bottom: 8px; }
.newsletter p { color: var(--text-muted); max-width: 540px; margin: 0 auto 22px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; background: rgba(11,14,21,0.7); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); padding: 13px 16px; font-size: 15px; font-family: var(--font-body);
}
.newsletter-form input:focus { outline: none; border-color: var(--brand-gold); }
.form-note { font-size: 12px; color: var(--text-dim); margin-top: 12px; }
.form-msg { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 20px; }
.form-msg.ok { color: #4ADE80; }
.form-msg.err { color: #FF6B6B; }

/* ---------- Skeleton loaders ---------- */
.skeleton { position: relative; overflow: hidden; background: var(--surface-2); }
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shimmer 1.3s infinite;
}
@keyframes shimmer { from { transform: translateX(-100%);} to { transform: translateX(100%);} }
.sk-line { height: 12px; border-radius: 4px; margin: 8px 0; }

/* ---------- Page hero / breadcrumb ---------- */
.page-hero { padding: 44px 0 30px; border-bottom: 1px solid var(--border); background: var(--surface); }
.page-hero h1 { font-size: 38px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.page-hero p { color: var(--text-muted); max-width: 680px; margin: 0; font-size: 16px; }
.breadcrumb { font-size: 13px; color: var(--text-dim); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--brand-gold); }
.breadcrumb span { margin: 0 7px; }

/* ---------- Filters / search bar ---------- */
.toolbar { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 26px; }
.search-input {
  flex: 1; min-width: 220px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); padding: 12px 16px; font-size: 15px; font-family: var(--font-body);
}
.search-input:focus { outline: none; border-color: var(--brand-gold); }

/* ---------- Article (opinion) ---------- */
.article { max-width: 760px; margin: 0 auto; padding: 40px 0 60px; }
.article-meta { display: flex; align-items: center; gap: 14px; color: var(--text-dim); font-size: 13.5px; margin-bottom: 18px; flex-wrap: wrap; }
.article-meta .topic { color: var(--brand-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.article h1 { font-size: 40px; line-height: 1.1; margin-bottom: 16px; }
.article .lede { font-size: 20px; color: var(--text-muted); line-height: 1.5; margin-bottom: 26px; font-weight: 400; }
.article-body { font-size: 17px; line-height: 1.8; color: #DCE2EC; }
html[lang="hi"] .article-body { font-family: var(--font-deva); }
.article-body p { margin: 0 0 20px; }
.article-body h2 { font-size: 25px; margin: 36px 0 14px; }
.article-body blockquote {
  border-left: 4px solid var(--red); margin: 26px 0; padding: 6px 0 6px 22px;
  font-size: 20px; font-style: italic; color: var(--text);
}
.author-box { display: flex; align-items: center; gap: 14px; margin: 18px 0 30px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--brand-purple); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--brand-gold); flex-shrink: 0; }
.author-name { font-weight: 600; color: var(--text); }
.author-role { font-size: 13px; color: var(--text-dim); }

/* ---------- About / Team ---------- */
.profile { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: start; margin-bottom: 20px; }
.profile-photo {
  aspect-ratio: 1; border-radius: var(--radius); background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-deep));
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-size: 64px; font-weight: 700; color: var(--brand-gold); border: 1px solid var(--border);
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px; text-align: center; }
.team-avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px; background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-deep)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--brand-gold); }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 30px 0; }
.stat { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--brand-gold); }
.stat .lbl { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ---------- Cards / prose ---------- */
.prose { max-width: 800px; }
.prose p { color: #DCE2EC; margin: 0 0 18px; }
.prose h2 { font-size: 24px; margin: 30px 0 12px; }
.prose ul.bullet { list-style: disc; padding-left: 22px; margin: 0 0 18px; color: #DCE2EC; }
.prose ul.bullet li { margin-bottom: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); margin-top: 50px; }
.footer-top { padding: 48px 0 36px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin: 14px 0 18px; max-width: 320px; }
.footer-col h4 { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--brand-gold); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .2s;
}
.footer-social a:hover { color: #fff; background: var(--red); border-color: var(--red); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-dim); gap: 16px; flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--brand-gold); }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 82vw);
  background: var(--surface); border-left: 1px solid var(--border); padding: 22px;
  transform: translateX(100%); transition: transform .25s; display: flex; flex-direction: column; gap: 6px;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel a { font-family: var(--font-display); font-size: 18px; text-transform: uppercase; letter-spacing: 0.5px; padding: 12px 8px; border-bottom: 1px solid var(--border-soft); color: var(--text); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.mobile-nav-head button { background: none; border: 0; color: var(--text-muted); font-size: 26px; }

/* ---------- Helpers ---------- */
.muted { color: var(--text-muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.empty-state { text-align: center; padding: 50px 20px; color: var(--text-dim); }
.divider { height: 1px; background: var(--border); margin: 8px 0; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .hero { grid-template-columns: 1fr; }
  .vgrid, .vgrid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .profile { grid-template-columns: 1fr; }
  .profile-photo { width: 160px; }
  .page-hero h1 { font-size: 30px; }
  .article h1 { font-size: 30px; }
}
@media (max-width: 560px) {
  .topbar-social { display: none; }
  .vgrid, .vgrid.cols-2, .sidebar, .team-grid, .stat-row { grid-template-columns: 1fr; }
  .hero-side .vcard { flex-direction: column; }
  .hero-side .vcard .vthumb { width: 100%; }
  .newsletter-form { flex-direction: column; }
  .newsletter { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .section-title { font-size: 20px; }
  .brand-tag { display: none; }
}

/* ---------- Player modal ---------- */
.player-modal {
  position: fixed; inset: 0; z-index: 300; background: rgba(5, 7, 11, 0.9);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.player-modal.open { opacity: 1; pointer-events: auto; }
.player-box { width: min(960px, 100%); }
.player-frame { position: relative; aspect-ratio: 16/9; background: #000; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.player-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.player-title { color: var(--text); font-family: var(--font-display); font-size: 18px; margin-top: 14px; }
html[lang="hi"] .player-title { font-family: var(--font-deva); }
.player-close {
  position: absolute; top: -42px; right: 0; background: none; border: 0; color: #fff;
  font-size: 34px; line-height: 1; opacity: 0.85;
}
.player-close:hover { opacity: 1; color: var(--brand-gold); }
.player-box { position: relative; }

