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

:root {
  --red:        #FF0000;
  --red-dark:   #CC0000;
  --red-light:  rgba(255, 0, 0, 0.1);
  --red-glow:   rgba(255, 0, 0, 0.15);

  --bg:         #FFFFFF;
  --bg2:        #F9F9F9;
  --bg3:        #F2F2F2;
  --surface:    #F2F2F2;
  --surface2:   #E5E5E5;

  --border:     rgba(0,0,0,0.08);
  --border2:    rgba(0,0,0,0.14);

  --text:       #0F0F0F;
  --text2:      #3D3D3D;
  --muted:      #606060;

  --font-d:     'Barlow Condensed', sans-serif;
  --font-b:     'Plus Jakarta Sans', sans-serif;

  --nav-h:      60px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;

  --px:         40px;
  --px-mob:     16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-b); }

/* ============================================
   SCROLLBAR
============================================ */
::-webkit-scrollbar       { width: 6px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 99px; }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-logo img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active  { font-weight: 700; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-search-wrap { position: relative; }
.nav-search-wrap svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.nav-search {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 99px;
  padding: 7px 14px 7px 32px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  width: 200px;
  transition: border-color 0.2s, width 0.3s;
  font-family: var(--font-b);
}
.nav-search::placeholder { color: var(--muted); }
.nav-search:focus {
  border-color: rgba(255,0,0,0.4);
  width: 240px;
}

.lang-toggle {
  display: flex;
  background: var(--surface);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
  border: 0.5px solid var(--border);
}
.lang-btn {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: var(--text2);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.lang-btn.active { background: var(--red); color: #fff; }

.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  cursor: pointer;
  font-family: var(--font-d);
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav-avatar:hover { border-color: var(--red); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 190;
  flex-direction: column;
  padding: 24px var(--px-mob);
  gap: 4px;
  border-top: 0.5px solid var(--border);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 12px;
  font-size: 16px;
  color: var(--text2);
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-weight: 400;
}
.mobile-nav a:hover,
.mobile-nav a.active { background: var(--surface); color: var(--text); }
.mobile-nav a.active  { font-weight: 500; }

.mobile-nav-divider { height: 0.5px; background: var(--border); margin: 8px 0; }

.mobile-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 8px;
}
.mobile-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 15px;
  flex: 1;
  font-family: var(--font-b);
}
.mobile-search input::placeholder { color: var(--muted); }

/* ============================================
   HERO — Seekho-style mosaic
============================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px var(--px);
}

/* ---- Mosaic thumbnail grid ---- */
.hero-mosaic {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 6px;
  overflow: hidden;
}
.hero-mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  flex-shrink: 0;
}
.hero-mosaic-col img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  filter: brightness(0.28) saturate(0.7);
  transition: filter 0.3s;
}

/* Responsive: hide extra columns on smaller screens */
@media (max-width: 900px) {
  .hero-mosaic-col--hide-md { display: none; }
}
@media (max-width: 600px) {
  .hero-mosaic-col--hide-sm { display: none; }
}

/* ---- Dark overlay — heavier in centre, lighter at edges ---- */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 85% at 50% 50%,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.72) 45%,
      rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* ---- Centered content ---- */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 99px;
  padding: 7px 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,0,0,0.3);
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* Headline */
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 60px rgba(0,0,0,0.5);
}
.hero h1 em { color: var(--red); font-style: italic; }

/* Description */
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.97);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}

/* Buttons — centered row */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-b);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,0,0,0.4);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-b);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

/* Stats row with dividers */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 22px 40px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.stat-item {
  padding: 0 36px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(255,0,0,0.35);
  letter-spacing: 0.5px;
}
.stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: var(--font-b);
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ============================================
   CATEGORY PILLS
============================================ */
.cat-section { padding: 22px 0; position: relative; }
.cat-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 var(--px);
  overflow-x: visible;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.2);
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  font-family: var(--font-b);
}
.cat-pill:hover { background: var(--surface2); border-color: var(--text2); }
.cat-pill.active { background: var(--red); color: #fff; border-color: var(--red); }

/* ============================================
   DIVIDER
============================================ */
.divider { height: 0.5px; background: var(--border); margin: 0 var(--px); }

/* ============================================
   SECTION
============================================ */
.section { padding: 28px 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-b);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
}
.section-title span { color: var(--red); }
.see-all {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  cursor: pointer;
  transition: gap 0.2s;
  white-space: nowrap;
}
.see-all:hover { gap: 8px; }

/* ============================================
   HORIZONTAL SCROLL ROW
============================================ */
.h-scroll {
  display: flex;
  gap: 14px;
  padding: 0 var(--px);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}
.h-scroll::-webkit-scrollbar { display: none; }

/* ============================================
   FEATURED CARD
============================================ */
.feat-card {
  flex-shrink: 0;
  width: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 200px;
  cursor: pointer;
  border: 0.5px solid var(--border);
  background: var(--surface);
}
.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.feat-card:hover img { transform: scale(1.06); }
.feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(0,0,0,0.9));
}
.feat-play-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  backdrop-filter: blur(4px);
}
.feat-card:hover .feat-play-btn { opacity: 1; }
.feat-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 16px;
}
.feat-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 7px;
}
.feat-title {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.feat-info { font-size: 12px; color: rgba(255,255,255,0.92); display: flex; gap: 8px; }

/* ============================================
   VIDEO CARD
============================================ */
.v-card { flex-shrink: 0; width: 240px; cursor: pointer; }
.v-card:hover .v-thumb         { transform: scale(1.04); }
.v-card:hover .v-hover-overlay { opacity: 1; }
.v-card:hover .v-play-icon     { transform: scale(1); }

.v-thumb-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 135px;
  background: var(--surface);
  border: 0.5px solid var(--border);
}
.v-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.v-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.v-play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.25s ease;
}
.v-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.v-badge.new { background: var(--red); color: #fff; }
.v-badge.hot { background: #F5A623; color: #1a0a00; }
.v-duration {
  position: absolute;
  bottom: 7px;
  right: 8px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0,0,0,0.82);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
}
.v-meta    { padding: 12px 2px 0; }
.v-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v-row     { display: flex; align-items: center; justify-content: space-between; }
.v-channel { font-size: 12px; color: var(--text); font-weight: 500; }
.v-views   { font-size: 12px; color: var(--text); font-weight: 500; }
.v-progress {
  height: 2px;
  background: var(--surface2);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.v-bar { height: 100%; border-radius: 2px; background: var(--red); }

/* Progress width utilities */
.v-bar--60  { width: 60%; }
.v-bar--40  { width: 40%; }
.v-bar--80  { width: 80%; }

/* Coming-soon placeholder cards */
.v-card-empty .v-thumb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.v-card-empty .v-thumb-wrap span { font-size: 26px; opacity: 0.6; }
.v-card-empty .v-thumb-wrap p    { font-size: 10px; color: var(--muted); letter-spacing: 0.04em; }

/* Placeholder backgrounds */
.thumb-bg--sbi      { background: linear-gradient(135deg, #111827, #0d1f2d); }
.thumb-bg--upi      { background: linear-gradient(135deg, #0a1a0a, #0f1f0f); }
.thumb-bg--news     { background: linear-gradient(135deg, #1a0e00, #1a1200); }
.thumb-bg--election { background: linear-gradient(135deg, #0e0e1a, #14142a); }

/* ============================================
   PROMO BANNER
============================================ */
.promo-banner {
  margin: 8px var(--px) 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(110deg, rgba(255,0,0,0.07) 0%, rgba(255,0,0,0.02) 60%);
  border: 0.5px solid rgba(255,0,0,0.18);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.promo-text h3 {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.promo-text p { font-size: 14px; color: var(--text); max-width: 420px; line-height: 1.6; }
.promo-icon   { font-size: 48px; opacity: 0.8; flex-shrink: 0; }

/* ============================================
   MAKERS / TESTIMONIALS
============================================ */
.makers-section { padding: 36px 0 44px; }
.makers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0 var(--px);
}
.maker-card {
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.maker-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.maker-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  right: 20px;
  font-family: var(--font-d);
  font-size: 100px;
  color: var(--red);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}
.maker-quote {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.maker-info  { display: flex; align-items: center; gap: 12px; }
.maker-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface2);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border2);
}
.maker-avatar img { width: 100%; height: 100%; object-fit: cover; }
.maker-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.maker-loc  { font-size: 12px; color: var(--text); margin-top: 2px; font-weight: 600; }

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  padding: 48px var(--px) 28px;
  margin-top: 8px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.footer-brand {
  max-width: 100%;
}
.footer-links-group {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  flex: 1;
}
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}
.footer-address svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--red);
}
.footer-brand .logo {
  margin-bottom: 12px;
  display: block;
}
.footer-brand .logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand .logo span { color: var(--red); }
.footer-brand p {
  font-size: 14px;
  color: var(--text);
  max-width: 260px;
  line-height: 1.7;
  font-weight: 400;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 0; }
.footer-col--wide ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 36px;
  list-style: none;
  padding: 0;
}
.footer-col li a {
  font-size: 14px;
  color: var(--text2);
  transition: color 0.2s, padding-left 0.2s;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col li a::before {
  content: '›';
  font-size: 16px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
}
.footer-col li a:hover { color: var(--red); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--border2);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy   { font-size: 13px; color: var(--text); font-weight: 500; }
.footer-copy a { color: var(--red); font-weight: 600; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ============================================
   SCROLL-TO-TOP
============================================ */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100;
  transform: translateY(10px);
  box-shadow: 0 4px 20px rgba(255,0,0,0.25);
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover   { background: var(--red-dark); }

/* ============================================
   EMPTY STATE
============================================ */
.empty-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-b);
}
.empty-state.visible { display: block; }
.empty-state__icon  { font-size: 40px; margin-bottom: 14px; }
.empty-state__title { font-size: 16px; color: #888; margin-bottom: 6px; }
.empty-state__sub   { font-size: 13px; color: var(--muted); }

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.5s ease both; }
.hero-badge  { animation-delay: 0.05s; }
.hero h1     { animation-delay: 0.12s; }
.hero-desc   { animation-delay: 0.2s;  }
.hero-btns   { animation-delay: 0.27s; }
.hero-stats  { animation-delay: 0.34s; }

/* ============================================
   RESPONSIVE — TABLET ≤ 960px
============================================ */
@media (max-width: 960px) {
  :root { --px: 24px; }

  .nav-links      { display: none; }
  .nav-search-wrap{ display: none; }
  .hamburger      { display: flex; }

  .hero           { min-height: 500px; padding: 60px var(--px); }
  .hero h1        { font-size: 54px; }
  .makers-grid    { grid-template-columns: 1fr; }
  .footer-links-group { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ============================================
   RESPONSIVE — MOBILE ≤ 640px
============================================ */
@media (max-width: 640px) {
  :root { --px: var(--px-mob); }

  .navbar     { padding: 0 var(--px-mob); gap: 12px; }
  .nav-logo   { font-size: 18px; }
  .lang-toggle{ display: none; }
  .nav-avatar { width: 30px; height: 30px; font-size: 12px; }

  .hero              { min-height: 480px; padding: 40px var(--px-mob); }
  .hero h1           { font-size: 44px; }
  .hero-desc         { font-size: 14px; }
  .hero-btns         { gap: 10px; }
  .btn-primary,
  .btn-ghost         { padding: 12px 22px; font-size: 14px; }
  .hero-stats        { padding: 14px 16px; gap: 0; }
  .stat-item         { padding: 0 16px; }
  .stat-num          { font-size: 20px; }
  .stat-lbl          { font-size: 9px; }

  .cat-scroll        { padding: 0 var(--px-mob); flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .section-header    { padding: 0 var(--px-mob); }
  .section-title     { font-size: 19px; }
  .see-all           { font-size: 13px; }
  .h-scroll          { padding: 0 var(--px-mob); gap: 12px; }

  .feat-card         { width: 280px; height: 168px; }
  .feat-title        { font-size: 14px; }
  .feat-info         { font-size: 11px; }

  .v-card            { width: 190px; }
  .v-thumb-wrap      { height: 108px; }
  .v-title           { font-size: 13px; }
  .v-channel,
  .v-views           { font-size: 11px; }

  .promo-banner      { margin: 8px var(--px-mob) 24px; padding: 20px; }
  .promo-icon        { display: none; }
  .promo-text h3     { font-size: 16px; }
  .divider           { margin: 0 var(--px-mob); }

  .makers-section    { padding: 24px 0 32px; }
  .makers-grid       { padding: 0 var(--px-mob); gap: 14px; }
  .maker-card        { padding: 20px; }
  .maker-quote       { font-size: 14px; }
  .maker-name        { font-size: 14px; }
  .maker-loc         { font-size: 12px; }

  footer             { padding: 36px var(--px-mob) 28px; }
  .footer-top        { grid-template-columns: 1fr; gap: 24px; }
  .footer-links-group{ grid-template-columns: 1fr; gap: 28px; }
  .footer-col h4     { font-size: 12px; margin-bottom: 14px; }
  .footer-col li a   { font-size: 14px; }
  .footer-bottom     { flex-direction: column; align-items: flex-start; }
  .footer-copy       { font-size: 13px; }
  .scroll-top        { bottom: 72px; right: 16px; width: 36px; height: 36px; }
}

/* ============================================
   VERY SMALL ≤ 380px
============================================ */
@media (max-width: 380px) {
  .hero h1           { font-size: 36px; }
  .hero-btns         { flex-direction: column; }
  .btn-primary,
  .btn-ghost         { width: 100%; justify-content: center; }
  .hero-stats        { flex-wrap: wrap; row-gap: 12px; }
  .stat-divider      { display: none; }
  .stat-item         { padding: 0 14px; }
  .v-card            { width: 150px; }
  .feat-card         { width: 230px; }
}


/* ============================================================
   VIDEO DETAIL PAGE
   All styles for the inner video / article page
============================================================ */

/* ============================================
   READING PROGRESS BAR
============================================ */
.reading-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  z-index: 300;
}
.reading-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
}

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px var(--px);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  border-bottom: 0.5px solid var(--border);
  background: var(--bg2);
}
.breadcrumb a            { color: var(--text2); font-weight: 500; transition: color 0.2s; }
.breadcrumb a:hover      { color: var(--red); }
.breadcrumb-sep          { color: var(--text2); font-size: 11px; }
.breadcrumb-current      { color: var(--text); font-weight: 600; }

/* ============================================
   PAGE WRAPPER
============================================ */
.vp-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px var(--px) 60px;
}

/* Mobile-only elements: hidden on desktop */
.mob-tabs       { display: none; }
.vp-share-panel { display: none; }

/* Share panel social icons — desktop hidden, shown via mobile tab */
.sp-copy-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-bottom: 20px;
}
.sp-copy-url {
  flex: 1;
  font-size: 12px;
  color: var(--text2);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sp-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-b);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sp-copy-btn:hover { background: var(--red-dark); }

.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}
.sp-item span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text2);
  font-family: var(--font-b);
  text-align: center;
}
.sp-item:hover span { color: var(--text); }
.sp-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, filter 0.15s;
}
.sp-item:hover .sp-icon { transform: scale(1.08); filter: brightness(0.9); }
.sp-wa { background: #25D366; }
.sp-tg { background: #0088CC; }
.sp-tw { background: #000000; }
.sp-fb { background: #1877F2; }
.sp-yt { background: #FF0000; }
.sp-li { background: #0A66C2; }

/* ============================================
   VIDEO PAGE WRAPPER
============================================ */
.vp-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px var(--px) 60px;
}

/* ============================================
   PLAYER SECTION
============================================ */
.vp-player-section { margin-bottom: 28px; }

.vp-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 0.5px solid var(--border);
}
.vp-player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- PLAYER BAR ---- */
.vp-player-bar {
  display: flex;
  flex-direction: column;
  padding: 12px 0 0;
  gap: 12px;
}

/* Title — YouTube style: plain bold, not condensed, not uppercase */
.vp-player-title {
  font-family: var(--font-b);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.1px;
  text-transform: none;
  color: var(--text);
  line-height: 1.4;
  width: 100%;
}

/* Channel row: left (avatar+name+subscribe) and right (action pills) */
.vp-channel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border2);
}

.vp-channel-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vp-channel-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-b);
}

.vp-channel-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.vp-channel-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 2px;
}

.vp-channel-subs {
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}

.vp-subscribe-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 99px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-b);
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.vp-subscribe-btn:hover { opacity: 0.85; }

/* Action pills */
.vp-player-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

/* Grouped like/dislike pill */
.vp-action-group {
  display: flex;
  align-items: center;
  background: var(--surface);
  border-radius: 99px;
  overflow: hidden;
}
.vp-action-group .vp-action-btn {
  border-radius: 0;
  border: none;
  background: transparent;
}
.vp-action-group .vp-action-btn:first-child {
  padding-right: 12px;
}
.vp-action-group .vp-action-btn:last-child {
  padding-left: 12px;
  border-left: 1px solid var(--border2);
}
.vp-action-divider {
  width: 1px;
  height: 22px;
  background: var(--border2);
}

.vp-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-b);
  border: none;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.vp-action-btn:hover         { background: var(--surface2); }
.vp-action-btn.primary       { background: var(--red); color: #fff; }
.vp-action-btn.primary:hover { background: var(--red-dark); }
.vp-action-btn.no-label      { padding: 9px 12px; }
.vp-action-btn svg           { flex-shrink: 0; }

/* Description card — YouTube gray box */
.vp-desc-card {
  background: #FFFBEB;
  border: 1.5px solid #F5C842;
  border-radius: var(--radius-md);
  padding: 14px 16px 16px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.vp-desc-card:hover {
  background: #FFF8D6;
  border-color: #E8B800;
}

.vp-meta-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.vp-meta-item {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
}
.vp-meta-item strong { font-weight: 700; }
.vp-meta-item svg { flex-shrink: 0; }
.vp-meta-dot      { width: 4px; height: 4px; border-radius: 50%; background: #D4AA00; }

.vp-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--red-dark);
  background: none;
  border: none;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0;
}

.vp-desc-text {
  font-size: 14px;
  color: #1A1A1A;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* ============================================
   CONTENT GRID  (article + sidebar)
============================================ */
.vp-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: flex-start;
}

/* ---- ARTICLE BODY ---- */
/* ---- ARTICLE BODY ---- */
.vp-body {
  line-height: 1.85;
  color: var(--text);
  font-size: 17px;
}

/* H2 — section heading with bold left accent bar */
.vp-body h2 {
  font-family: var(--font-b);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--red);
  line-height: 1.3;
}

/* H3 — sub-heading, no bar */
.vp-body h3 {
  font-family: var(--font-b);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 28px 0 12px;
}

/* Body paragraphs — Neil Patel uses ~18px, generous line height */
.vp-body p {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 20px;
  color: var(--text);
}

/* Lists */
.vp-body ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vp-body ul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.vp-body ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---- STEP CARDS ---- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 32px;
}
.step-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  border-color: rgba(255,0,0,0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.step-card--visible { opacity: 1; transform: translateY(0); }

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  padding-top: 6px;
}
.step-text strong { color: var(--text); font-weight: 700; }

/* ---- TIPS CARD ---- */
.tips-card {
  background: #fff8f8;
  border: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin: 32px 0;
}
.tips-card-title {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tips-card ul li { font-size: 15px; }

/* ---- ARTICLE DIVIDER ---- */
.article-divider { height: 1px; background: var(--border2); margin: 36px 0; }

/* ============================================
   SIDEBAR
============================================ */
.vp-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.sidebar-card-title {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.sidebar-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.sidebar-stat {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  padding: 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-stat-val {
  font-family: var(--font-b);
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.5px;
  line-height: 1;
}
.sidebar-stat-lbl {
  font-size: 11px;
  color: var(--text);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ---- SHARE BUTTONS ---- */
.share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  flex: 1;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border2);
  background: var(--bg);
  color: var(--text);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  font-family: var(--font-b);
}
.share-btn:hover     { background: var(--surface); }
.share-btn.yt        { border-color: rgba(255,0,0,0.25); color: #cc0000; }
.share-btn.yt:hover  { background: rgba(255,0,0,0.06); }
.share-btn.wa        { border-color: rgba(37,211,102,0.35); color: #128C7E; }
.share-btn.wa:hover  { background: rgba(37,211,102,0.07); }
.share-btn.cp:hover  { background: rgba(0,0,0,0.04); color: var(--text); }

/* ---- RELATED VIDEOS ---- */
.related-list { display: flex; flex-direction: column; gap: 12px; }
.related-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 8px;
  margin: -8px;
  transition: background 0.2s;
  text-decoration: none;
}
.related-card:hover                   { background: var(--surface); }
.related-card.active                  { background: var(--surface); }
.related-card.active .related-title   { color: var(--red); }

.related-thumb {
  position: relative;
  flex-shrink: 0;
  width: 110px;
  height: 62px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  border: 0.5px solid var(--border);
}
.related-thumb img                    { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.related-card:hover .related-thumb img{ transform: scale(1.05); }
.related-thumb-dur {
  position: absolute;
  bottom: 4px;
  right: 5px;
  font-size: 9px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
}
.related-meta  { flex: 1; min-width: 0; }
.related-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-info  { font-size: 11px; color: var(--text2); font-weight: 500; }

/* ============================================
   VIDEO PAGE — RESPONSIVE
============================================ */
@media (max-width: 960px) {
  .vp-wrapper { padding: 24px var(--px) 48px; }
  .vp-grid                             { grid-template-columns: 1fr; gap: 28px; }
  .vp-sidebar                          { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .vp-sidebar .sidebar-card:last-child { grid-column: 1 / -1; }
  .related-list                        { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .related-card                        { flex-direction: column; margin: 0; }
  .related-thumb                       { width: 100%; height: 100px; }
  .vp-share-panel                      { display: none; }
  .mob-tabs                            { display: none; }
}

@media (max-width: 640px) {

  /* ── Player: edge-to-edge, no side gaps ─────────────────── */
  .vp-wrapper {
    padding: 0 0 40px;
  }
  .vp-player-section {
    margin-bottom: 0;
  }
  .vp-player-wrap {
    border-radius: 0;
  }

  /* ── Breadcrumb: compact ─────────────────────────────────── */
  .breadcrumb {
    padding: 10px var(--px-mob);
    font-size: 11px;
  }
  .breadcrumb-sep { margin: 0 4px; }

  /* ── Title block: full-width padded ─────────────────────── */
  .vp-player-bar {
    padding: 14px var(--px-mob) 0;
    gap: 14px;
  }
  .vp-player-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
  }

  /* ── Channel row: wraps so actions drop to own full line ─── */
  .vp-channel-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 0;
    gap: 0;
  }
  .vp-channel-left {
    gap: 10px;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border2);
  }
  .vp-channel-avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .vp-channel-name  { font-size: 13px; }
  .vp-channel-subs  { font-size: 11px; }
  .vp-subscribe-btn {
    padding: 8px 14px;
    font-size: 13px;
    margin-left: auto;
  }

  /* ── Action row: own full line below channel row ─────────── */
  .vp-player-actions {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    padding: 12px var(--px-mob) 4px;
    border-top: none;
    margin-top: 0;
    flex-wrap: nowrap;
  }
  .vp-action-group {
    background: var(--surface);
    border-radius: 99px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0 4px;
  }
  .vp-action-group .vp-action-btn {
    flex-direction: row;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    min-width: unset;
  }
  .vp-action-group .vp-action-btn svg {
    width: 20px;
    height: 20px;
  }
  .vp-action-group .vp-action-btn:first-child { padding-right: 8px; }
  .vp-action-group .vp-action-btn:last-child  {
    padding-left: 8px;
    border-left: 1px solid var(--border2);
  }
  .vp-action-divider { display: none; }
  .vp-action-btn {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 11px;
    font-weight: 500;
    color: var(--text2);
    min-width: 52px;
    text-align: center;
  }
  .vp-action-btn svg {
    width: 22px;
    height: 22px;
  }
  .vp-action-btn:hover { background: transparent; color: var(--red); }

  /* ── Description card: padded ────────────────────────────── */
  .vp-desc-card {
    margin: 16px var(--px-mob) 0;
    border-radius: var(--radius-md);
  }

  /* ── Tab bar: Netflix-style underline tabs ───────────────── */
  .mob-tabs {
    display: flex;
    border-bottom: 1px solid var(--border2);
    margin: 18px 0 0;
    padding: 0 var(--px-mob);
    gap: 0;
    position: sticky;
    top: var(--nav-h);
    background: var(--bg);
    z-index: 10;
  }
  .mob-tab {
    flex: 1;
    padding: 13px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    font-family: var(--font-b);
    letter-spacing: 0.01em;
  }
  .mob-tab.active {
    color: var(--text);
    border-bottom-color: var(--red);
  }

  /* ── Tab panel switching ─────────────────────────────────── */
  .vp-grid {
    display: block;
    gap: 0;
  }
  /* Hide ALL panels by default on mobile */
  [data-panel] {
    display: none !important;
  }
  /* Show only the active panel */
  [data-panel][data-active="true"] {
    display: block !important;
    padding: 20px var(--px-mob) 0;
  }
  /* Share panel gets symmetric padding */
  .vp-share-panel[data-active="true"] {
    padding: 20px var(--px-mob);
  }

  /* ── Sidebar: only shown when Related tab is active ─────── */
  .vp-sidebar[data-active="true"] {
    display: block;
  }
  /* Hide Video Info + Share card — covered by Share tab */
  .vp-sidebar[data-active="true"] .sidebar-card:first-child {
    display: none;
  }
  .vp-sidebar[data-active="true"] .sidebar-card {
    margin-bottom: 8px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .vp-sidebar[data-active="true"] .sidebar-card-title {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border2);
  }
  /* ── Related tab: full desktop card style ─────────────────── */
  .related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .related-card {
    flex-direction: row;
    align-items: flex-start;
    margin: 0;
    padding: 10px;
    border-radius: var(--radius-md);
    border-bottom: none;
    background: var(--bg2);
    border: 1px solid var(--border2);
  }
  .related-card.active  { background: var(--surface); border-color: var(--border2); }
  .related-card:hover   { background: var(--surface); }
  .related-card:last-child { border-bottom: none; }
  .related-thumb {
    width: 130px;
    height: 74px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
  }
  .related-thumb-dur { font-size: 10px; }
  .related-meta  { padding: 0 0 0 10px; flex: 1; }
  .related-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }
  .related-info  { font-size: 12px; margin-top: 5px; }

  /* ── Sidebar stats: horizontal in Related tab ────────────── */
  .sidebar-stats {
    display: flex;
    gap: 0;
    justify-content: space-around;
    padding: 4px 0 12px;
  }
  .sidebar-stat { text-align: center; }
  .sidebar-stat-val { font-size: 18px; }
  .sidebar-stat-lbl { font-size: 10px; }

  /* ── Article body typography ─────────────────────────────── */
  .vp-body h2 { font-size: 19px; }
  .vp-body h3 { font-size: 15px; }
  .vp-body p  { font-size: 16px; }
  .vp-body ul li { font-size: 16px; }

  /* ── Step cards ──────────────────────────────────────────── */
  .step-card  { padding: 12px 14px; }
  .step-num   { width: 28px; height: 28px; font-size: 12px; flex-shrink: 0; }

  /* ── Share buttons in share panel: full width ────────────── */
  .share-btns { flex-direction: column; gap: 10px; }
  .share-btn  { width: 100%; justify-content: center; padding: 12px; font-size: 14px; }

  /* ── Reading progress bar stays full width ───────────────── */
  .reading-progress-track { left: 0; right: 0; }
}

@media (max-width: 380px) {
  .vp-player-title { font-size: 16px; }
  .vp-action-btn   { font-size: 10px; min-width: 44px; }
  .vp-channel-name { font-size: 12px; }
  .vp-subscribe-btn { padding: 7px 11px; font-size: 12px; }
}


/* ============================================================
   PERFORMANCE FIXES — Core Web Vitals
============================================================ */

/* Fix CLS: aspect-ratio replaces padding-bottom hack.
   position:relative must stay so .yt-facade-btn (absolute) anchors inside. */
.vp-player-wrap {
  position: relative;
  padding-bottom: 0;
  aspect-ratio: 16 / 9;
}
/* iframe fills wrapper */
.vp-player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* facade fills wrapper; position:absolute creates stacking context
   so .yt-facade-btn (inset:0) stays contained inside the video box */
.vp-player-wrap .yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

/* Fix CLS: reserve space in scroll rows — prevents layout shift when images load */
.h-scroll        { min-height: 200px; }
.feat-card       { contain: layout style; }
.v-card          { contain: layout style; }
.v-thumb-wrap    { contain: strict; }

/* Fix CLS: maker avatar fallback without DOM mutation */
.maker-avatar-fallback {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  border: 0.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   PERFORMANCE — Core Web Vitals & Paint Optimisation
============================================================ */

/* content-visibility: auto — skip rendering of below-fold sections until needed */
.makers-section,
.promo-banner,
footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}

/* will-change — promote animated layers to GPU composite */
.hero-mosaic-col img    { will-change: filter; }
.feat-card img          { will-change: transform; }
.v-thumb                { will-change: transform; }
.scroll-top             { will-change: opacity, transform; }
.step-card              { will-change: opacity, transform; }
.mob-tabs               { will-change: auto; }

/* Prevent layout shift on image load — aspect-ratio reserves space */
.feat-card img,
.v-thumb,
.related-thumb img,
.hero-banner-img,
.wv-thumb img {
  aspect-ratio: 16 / 9;
}

/* Font smoothing for sharper text rendering */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Reduce paint area for fixed elements */
.navbar        { contain: layout style; }
.wv-controls   { contain: layout style; }
.mob-tabs      { contain: layout style; }

/* Optimise transitions — only transition what changes */
.feat-card     { transition: box-shadow 0.2s; }
.v-card        { transition: none; }
.maker-card    { transition: box-shadow 0.2s, transform 0.2s; }
.wv-card       { transition: box-shadow 0.2s, transform 0.2s; }
.cat-pill      { transition: background 0.15s, color 0.15s, border-color 0.15s; }
.nav-search    { transition: border-color 0.2s, width 0.3s; }
.lang-btn      { transition: background 0.15s, color 0.15s; }
.step-card     { transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.2s, box-shadow 0.2s; }
.vp-action-btn { transition: background 0.15s, color 0.15s; }
.footer-col li a { transition: color 0.15s; }
.banner-play-btn { transition: background 0.2s, transform 0.15s; }
.social-btn    { transition: background 0.15s, border-color 0.15s, color 0.15s; }
.related-card  { transition: background 0.15s; }
.related-thumb img { transition: transform 0.3s; }
.see-all       { transition: gap 0.2s; }
.scroll-top    { transition: opacity 0.3s, transform 0.3s; }
.share-btn     { transition: background 0.15s, color 0.15s; }
.btn-primary   { transition: background 0.2s, transform 0.15s; }
.btn-ghost     { transition: background 0.2s, border-color 0.15s; }
.feat-card img { transition: transform 0.4s ease; }
.v-thumb       { transition: transform 0.35s ease; }
.v-hover-overlay { transition: opacity 0.25s; }
.v-play-icon   { transition: transform 0.25s ease; }
.feat-play-btn { transition: opacity 0.25s; }
.hamburger span { transition: transform 0.3s, opacity 0.3s; }
.hero-banner-img { transition: transform 0.4s ease; }

/* YouTube facade (replaces iframe until user clicks) */
.yt-facade {
  position: relative;
  cursor: pointer;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.yt-facade-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.yt-facade:hover .yt-facade-img { transform: scale(1.02); }
.yt-facade-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-facade-play {
  width: 72px;
  height: 72px;
  background: rgba(255,0,0,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.yt-facade:hover .yt-facade-play {
  transform: scale(1.1);
  background: var(--red);
}
.yt-facade-label {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-b);
  letter-spacing: 0.03em;
}

/* No-JS fallback: show step cards even without IntersectionObserver */
.no-js .step-card {
  opacity: 1;
  transform: none;
}

/* ============================================
   SHARE SHEET MODAL
============================================ */
.vs-share-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.vs-share-overlay.open { opacity: 1; }

.vs-share-sheet {
  background: var(--bg);
  width: 100%;
  max-width: 560px;
  border-radius: 20px 20px 0 0;
  padding: 12px 24px 32px;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
}
.vs-share-overlay.open .vs-share-sheet { transform: translateY(0); }

/* On desktop — show as a centred popup */
@media (min-width: 640px) {
  .vs-share-overlay {
    align-items: center;
  }
  .vs-share-sheet {
    border-radius: 16px;
    max-width: 480px;
    padding: 24px 28px 32px;
    transform: scale(0.95) translateY(12px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .vs-share-overlay.open .vs-share-sheet {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Handle bar (mobile) */
.vs-share-handle {
  width: 40px;
  height: 4px;
  background: var(--border2);
  border-radius: 99px;
  margin: 0 auto 18px;
}
@media (min-width: 640px) { .vs-share-handle { display: none; } }

/* Header */
.vs-share-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.vs-share-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-b);
}
.vs-share-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--surface);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.vs-share-close:hover { background: var(--surface2); color: var(--text); }

/* Copy link bar */
.vs-share-url-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 24px;
}
.vs-share-url-text {
  flex: 1;
  font-size: 13px;
  color: var(--text2);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: var(--font-b);
}
.vs-share-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-b);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.1s;
}
.vs-share-copy-btn:hover  { background: var(--red-dark); }
.vs-share-copy-btn:active { transform: scale(0.97); }

/* Social icon grid */
.vs-share-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 400px) {
  .vs-share-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

.vs-share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}
.vs-share-item span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-b);
  text-align: center;
  letter-spacing: 0.01em;
}
.vs-share-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, filter 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.vs-share-item:hover .vs-share-icon {
  transform: scale(1.1);
  filter: brightness(0.9);
}

/* ── Like / Dislike button states ── */
.vp-action-group .vp-action-btn.vs-liked {
  color: var(--red);
  font-weight: 700;
}
.vp-action-group .vp-action-btn.vs-liked svg {
  fill: var(--red);
  stroke: var(--red);
}
.vp-action-group .vp-action-btn.vs-disliked {
  color: var(--text);
}
.vp-action-group .vp-action-btn.vs-disliked svg {
  fill: var(--text);
  stroke: var(--text);
}
#likeCount {
  font-weight: 600;
  min-width: 24px;
  display: inline-block;
}

/* ============================================
   SHORTS SECTION
============================================ */
.shorts-section { padding: 28px 0 8px; }

.shorts-logo {
  display: inline-flex;
  align-items: center;
  margin-right: 2px;
  vertical-align: middle;
}

/* Horizontal scroll container */
.shorts-scroll {
  display: flex;
  gap: 14px;
  padding: 0 var(--px);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}
.shorts-scroll::-webkit-scrollbar { display: none; }

/* Portrait card — 9:16 ratio */
.short-card {
  flex-shrink: 0;
  width: 160px;
  text-decoration: none;
  cursor: pointer;
  display: block;
}
.short-card:hover .short-thumb-wrap img { transform: scale(1.04); }
.short-card:hover .short-overlay { opacity: 1; }

.short-thumb-wrap {
  position: relative;
  width: 160px;
  height: 284px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid var(--border2);
}
.short-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.short-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.short-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.short-dur {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--font-b);
}

.short-meta { padding: 10px 2px 0; }
.short-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.short-views {
  font-size: 12px;
  color: var(--text2);
  font-weight: 500;
}

/* Mobile */
@media (max-width: 640px) {
  .shorts-scroll { padding: 0 var(--px-mob); gap: 10px; }
  .short-card    { width: 130px; }
  .short-thumb-wrap { width: 130px; height: 231px; }
  .short-title   { font-size: 12px; }
}

/* ============================================
   SHARE SHEET — SOCIAL BRAND COLOURS
   (Replaces inline style= on .vs-share-icon)
============================================ */
.vs-share-icon--wa { background: #25D366; }
.vs-share-icon--tg { background: #0088CC; }
.vs-share-icon--tw { background: #000000; }
.vs-share-icon--fb { background: #1877F2; }
.vs-share-icon--yt { background: #FF0000; }
.vs-share-icon--li { background: #0A66C2; }

/* Verified checkmark icon next to channel name */
.verified-icon { vertical-align: middle; margin-left: 3px; }
