:root {
  --brand-red: #e21820;
  --brand-red-dark: #b01018;
  --ink: #0f0f10;
  --ink-soft: #2a2a2e;
  --silver: #e8eaee;
  --silver-deep: #c5c9d1;
  --paper: #f4f5f8;
  --white: #ffffff;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-hindi: "Noto Sans Devanagari", "Source Sans 3", sans-serif;
  --font-body: "Source Sans 3", "Noto Sans Devanagari", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 55% at 0% -5%, rgba(226, 24, 32, 0.14), transparent 50%),
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(15, 15, 16, 0.06), transparent 45%),
    linear-gradient(180deg, #fafbfc 0%, var(--paper) 45%, #eceef3 100%);
  min-height: 100vh;
  overflow-x: clip;
}

a { color: var(--brand-red); text-decoration: none; }
a:hover { color: var(--brand-red-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 12, 14, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--brand-red);
}

.top-bar {
  background: linear-gradient(90deg, #1a1a1c, #2c1214 50%, #1a1a1c);
  color: var(--silver);
  font-size: 0.9rem;
  padding: 0.4rem 0;
}

.top-tagline {
  font-family: var(--font-hindi);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffd0d3;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.social-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}
.social-icon:hover {
  transform: translateY(-2px);
  color: #fff !important;
}
.social-youtube { background: #ff0000; }
.social-youtube:hover { background: #cc0000; }
.social-facebook { background: #1877f2; }
.social-facebook:hover { background: #0f5dcb; }

.social-icons-compact .social-icon {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}
.social-icons-compact .social-icon svg {
  width: 1rem;
  height: 1rem;
}

.top-bar .social-icons {
  margin-left: auto;
}

.shell-wide,
main .container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.main-nav { padding: 0.55rem 0; }
.nav-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none !important;
  min-width: 0;
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.brand-slogan {
  font-family: var(--font-hindi);
  color: #ffb4b8;
  font-size: 0.85rem;
  font-weight: 600;
}

.desktop-nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem;
}

.desktop-nav .nav-link {
  color: var(--silver) !important;
  font-weight: 600;
  padding: 0.45rem 0.7rem !important;
  text-decoration: none;
  border-radius: 4px;
}
.desktop-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: var(--brand-red) !important;
  color: #fff !important;
  border-radius: 4px;
  margin-left: 0.25rem;
}
.nav-cta:hover { background: var(--brand-red-dark) !important; }

/* Custom hamburger */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.menu-toggle:hover {
  background: rgba(226, 24, 32, 0.18);
  border-color: var(--brand-red);
}
.menu-toggle-box {
  width: 22px;
  height: 16px;
  position: relative;
  display: block;
}
.menu-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}
.menu-line:nth-child(1) { top: 0; }
.menu-line:nth-child(2) { top: 7px; }
.menu-line:nth-child(3) { top: 14px; }

body.menu-open .menu-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
body.menu-open .menu-line:nth-child(2) {
  opacity: 0;
}
body.menu-open .menu-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* Left side drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(86vw, 340px);
  height: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, #15161a 0%, #0e0f12 100%);
  border-right: 3px solid var(--brand-red);
  z-index: 1200;
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1.25rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.4);
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer-logo {
  height: 42px;
  width: auto;
}
.drawer-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.drawer-close:hover { background: var(--brand-red); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  overflow-y: auto;
  flex: 1;
}
.drawer-nav a {
  color: #e8eaee;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 0.9rem;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.drawer-nav a:hover {
  background: rgba(226, 24, 32, 0.16);
  color: #fff;
}
.drawer-cta {
  background: var(--brand-red) !important;
  color: #fff !important;
  text-align: center;
  margin-top: 0.5rem;
  border-bottom: none !important;
}
.drawer-social {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer-social .social-icons {
  flex-direction: column;
  align-items: stretch;
}
.drawer-social .social-icon {
  justify-content: center;
}

body.menu-open {
  overflow: hidden;
}

.content-tabs {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.tabs-row {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0.35rem 0;
  scrollbar-width: thin;
}
.tab-link {
  color: #c9ced6;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tab-link:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.hero-brand {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.hero-brand-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10, 10, 12, 0.82), rgba(226, 24, 32, 0.55) 55%, rgba(10, 10, 12, 0.88)),
    radial-gradient(circle at 70% 20%, #5a5a62, #0f0f10 65%);
  animation: bgShift 12s ease-in-out infinite alternate;
}
.hero-brand-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 1.25rem;
  max-width: 820px;
}
.hero-logo {
  width: min(320px, 78vw);
  margin-bottom: 1.1rem;
  animation: floatSoft 4.5s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}
.hero-kicker {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  margin: 0;
  color: #ffc9cc;
  font-size: 1.15rem;
}
.hero-tagline {
  font-family: var(--font-hindi);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 700;
  margin: 0.35rem 0 0.6rem;
  line-height: 1.15;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}
.hero-lead {
  color: var(--silver);
  font-size: 1.08rem;
  max-width: 40ch;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.35rem;
}

.hero-banner { position: relative; background: #000; }
.hero-img {
  height: min(78vh, 720px);
  object-fit: cover;
  filter: brightness(1.1);
}
.banner-link { display: block; }
.hero-caption {
  bottom: 14%;
  left: 6%;
  right: auto;
  text-align: left;
  max-width: 640px;
  animation: riseIn 0.9s ease both;
}
.hero-caption-logo {
    width: min(90px, 25vw);
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}
.hero-caption .hero-kicker {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  margin: 0;
  color: #ffc9cc;
  font-size: 1.05rem;
}
.hero-caption .hero-tagline {
  font-family: var(--font-hindi);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  margin: 0.25rem 0 0.4rem;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}
.hero-caption .hero-sub {
  color: var(--silver);
  margin: 0;
  max-width: 40ch;
}

.btn-brand {
  background: var(--brand-red);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
}
.btn-brand:hover { background: var(--brand-red-dark); color: #fff; }

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  background: transparent;
}
.btn-outline-light:hover { background: #fff; color: var(--ink); }

.btn-like {
  background: transparent;
  border: 1.5px solid var(--brand-red);
  color: var(--brand-red);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  overflow: visible;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn-like:hover:not(:disabled) { background: var(--brand-red); color: #fff; }
.btn-like:disabled {
  opacity: 1;
  cursor: default;
}
.btn-like.is-liked {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}
.btn-like .like-heart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  line-height: 1;
  transform-origin: center;
}
.btn-like .like-heart.heart-bounce {
  animation: heartPop 0.55s cubic-bezier(0.17, 0.89, 0.32, 1.4);
}

.ig-like-burst {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  pointer-events: none;
  color: #ff2d55;
  font-size: 1.15em;
  line-height: 1;
  transform: translate(-50%, -50%) scale(0.25);
  opacity: 0;
  filter: drop-shadow(0 3px 8px rgba(255, 45, 85, 0.4));
}
.ig-like-burst.is-on {
  animation: igBurstOnHeart 0.75s ease forwards;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  25% { transform: scale(0.75); }
  55% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

@keyframes igBurstOnHeart {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  30% {
    opacity: 1;
    transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, -12px))) scale(var(--sc, 1));
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, -28px) - 10px)) scale(calc(var(--sc, 1) * 1.15));
  }
}

.section { padding: 2rem 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 0.35rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1;
}
.section-head p { margin: 0.2rem 0 0; color: var(--ink-soft); font-family: var(--font-hindi); }
.section-link { font-weight: 700; white-space: nowrap; }

.type-chip {
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}

.latest-player {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.media-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(15, 15, 16, 0.2);
  background: #000;
}
.latest-meta h3 { font-size: 1.4rem; font-weight: 700; margin: 0 0 0.6rem; }
.meta-row { display: flex; gap: 0.85rem; align-items: center; flex-wrap: wrap; color: #666; }

.latest-section .section-head {
  margin-bottom: 1.25rem;
}
.latest-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.latest-marquee:hover {
  overflow: visible;
  mask-image: none;
  -webkit-mask-image: none;
}
.latest-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.1rem;
  animation: latestMarquee 45s linear infinite;
  will-change: transform;
}
.latest-marquee-card {
    flex: 0 0 clamp(380px, 32vw, 500px);
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}
.latest-marquee-card:hover {
  transform: translateY(-8px);
  color: inherit;
}
.latest-marquee-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #111;
  box-shadow: 0 14px 32px rgba(15, 15, 16, 0.18);
}
.latest-marquee-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-marquee-meta {
  padding-top: 0.65rem;
}
.latest-marquee-meta h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@keyframes latestMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .latest-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
  .latest-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    padding: 0 1.25rem;
  }
  .latest-marquee-track .latest-marquee-card[aria-hidden="true"] {
    display: none;
  }
}
.like-pill, .like-mini {
  font-weight: 700;
  color: var(--brand-red);
  font-size: 0.9rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.video-card {
  color: inherit;
  display: block;
  transition: transform 0.35s ease;
}
.video-card:hover { transform: translateY(-5px); color: inherit; }

.thumb-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #111;
}
.thumb-wrap img, .short-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-card:hover .thumb-wrap img { transform: scale(1.05); }
.thumb-fallback {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #222, #444);
  color: #fff; font-weight: 700;
}

.play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(226, 24, 32, 0.94);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.play-badge::before {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
}

.tag-latest, .tag-live, .shorts-badge {
  position: absolute;
  top: 10px; left: 10px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.tag-latest { background: var(--brand-red); }
.tag-live { background: #d40000; animation: pulseLive 1.6s ease infinite; }
.shorts-badge { background: rgba(0, 0, 0, 0.7); }

.video-card h3, .short-card h3 {
  font-size: 1.02rem;
  margin: 0.65rem 0 0.2rem;
  line-height: 1.3;
  font-weight: 700;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: #666;
  font-size: 0.85rem;
}

.shorts-section { background: linear-gradient(180deg, rgba(15, 15, 16, 0.03), transparent); }
.shorts-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 200px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}
.shorts-rail-wrap {
  grid-auto-flow: dense;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  overflow: visible;
}
.short-card {
  color: inherit;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}
.short-card:hover { transform: translateY(-4px); color: inherit; }
.short-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.editor-card { text-align: center; padding: 1.25rem 1rem 1.5rem; }
.editor-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--brand-red);
  background: var(--silver);
}
.editor-photo img { width: 100%; height: 100%; object-fit: cover; }
.editor-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--brand-red);
  background: #fff;
}
.editor-card h3 { margin: 0; font-size: 1.25rem; }
.designation { color: var(--brand-red); font-weight: 700; margin: 0.2rem 0 0.6rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-meta { list-style: none; padding: 0; margin-top: 1.25rem; }
.contact-meta li { margin-bottom: 0.55rem; word-break: break-word; }
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--silver-deep);
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(15, 15, 16, 0.06);
}

/* Modern Contact page (Get In Touch + form card) */
.contact-section {
  background: #f3f4f6;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.15fr);
  gap: 2rem;
  align-items: start;
}
.contact-info-title {
  color: var(--brand-red);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 1rem;
}
.contact-intro {
  margin-bottom: 1.1rem;
  color: #555;
  font-size: 0.98rem;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.info-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 6px 18px rgba(15, 15, 16, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(226, 24, 32, 0.1);
  color: var(--brand-red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 22px;
  height: 22px;
}
.info-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.info-body p {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.5;
}
.info-body a {
  color: inherit;
  text-decoration: none;
}
.info-body a:hover { color: var(--brand-red); }
.info-body a.email-link { color: #2563eb; }
.info-body a.email-link:hover { color: #1d4ed8; }

.contact-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 10px 28px rgba(15, 15, 16, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.contact-form-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #111;
}
.contact-form-modern .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form-modern .form-field {
  margin-bottom: 1rem;
}
.contact-form-modern .form-row-2 .form-field {
  margin-bottom: 0;
}
.contact-form-modern label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.4rem;
}
.contact-form-modern .form-control,
.contact-form-modern .form-select {
  border: 1px solid #d7dbe2;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  background: #fff;
  box-shadow: none;
  min-height: 46px;
}
.contact-form-modern .form-control:focus,
.contact-form-modern .form-select:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 0.2rem rgba(226, 24, 32, 0.12);
}
.contact-form-modern .message-box {
  min-height: 140px;
  resize: vertical;
}
.btn-contact-send {
  background: var(--brand-red);
  color: #fff;
  border: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  margin-top: 0.25rem;
}
.btn-contact-send:hover {
  background: var(--brand-red-dark);
  color: #fff;
}

.page-hero {
  padding: 3rem 0 1.75rem;
  background:
    linear-gradient(120deg, rgba(15, 15, 16, 0.94), rgba(226, 24, 32, 0.78)),
    radial-gradient(circle at 80% 20%, #555, #111 60%);
  color: #fff;
}
.page-hero .eyebrow {
  font-family: var(--font-hindi);
  font-weight: 700;
  margin: 0;
  color: #ffd6d8;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
  margin: 0.2rem 0 1rem;
  line-height: 1;
}
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.pill {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-weight: 700;
  font-size: 0.88rem;
}
.pill:hover, .pill.active { background: #fff; color: var(--ink); }

.watch-section { padding-top: 2.25rem; }
.watch-head { margin-top: 1rem; }
.watch-head h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 0.5rem 0; font-weight: 700; }
.watch-desc-wrap {
  max-width: 100%;
  margin-top: 0.4rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--silver-deep);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
.watch-desc { color: var(--ink-soft); max-width: 100%; }
.watch-desc-wrap.is-collapsed .watch-desc-toggle {
  display: inline;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  position: static;
  background: transparent;
}
.watch-desc-wrap.is-expanded .watch-desc-toggle {
  display: inline-block;
  margin-top: 0.35rem;
  margin-left: 0;
  position: static;
  background: transparent;
}
.watch-desc-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-red);
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.watch-desc-toggle:hover {
  color: #b81218;
}
.watch-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.85rem; }
.short-player { max-width: 360px; margin: 0 auto; }
.ratio-9x16 { --bs-aspect-ratio: 177.77%; }

.content-prose { max-width: 760px; font-size: 1.08rem; line-height: 1.7; }
.empty-state {
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--silver-deep);
  border-radius: 8px;
  color: var(--ink-soft);
}

.social-strip {
  background: linear-gradient(110deg, #111 0%, #2a1012 50%, #111 100%);
  color: #fff;
  text-align: center;
}
.social-logo { height: 64px; margin-bottom: 0.75rem; }
.social-strip h2 {
  font-family: var(--font-hindi);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
}
.social-strip p { color: var(--silver); }

.site-footer {
  background: #0f0f10;
  color: var(--silver);
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}
.footer-logo { height: 64px; width: auto; }
.footer-slogan {
  font-family: var(--font-hindi);
  color: #ffb4b8;
  font-weight: 700;
  margin: 0.75rem 0 0.35rem;
}
.footer-text { color: #aeb3bc; max-width: 36ch; }
.site-footer h3 {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a { color: #c5c9d1; }
.footer-links a:hover { color: #fff; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid #2a2a2e;
  padding: 0.9rem 0;
  font-size: 0.9rem;
}
.admin-link { color: #888; }
.admin-link:hover { color: #fff; }

.reveal { animation: riseIn 0.7s ease both; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes bgShift {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(8deg); }
}
@keyframes pulseLive {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

img, video, iframe {
  max-width: 100%;
}

.container {
  width: 100%;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

/* Extra-large desktops — content + chrome share width */
@media (min-width: 1400px) {
  .shell-wide,
  main .container {
    max-width: 1320px;
  }

  .brand-logo { height: 58px; }
  .brand-name { font-size: 1.45rem; }
  .desktop-nav { gap: 0.15rem; }
  .desktop-nav .nav-link { padding: 0.5rem 0.95rem; font-size: 0.95rem; }

  .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .editor-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .latest-player {
    grid-template-columns: 1.55fr 1fr;
    gap: 2rem;
  }
  .contact-layout {
    gap: 2.5rem;
  }
  .shorts-rail {
    grid-auto-columns: minmax(170px, 200px);
    gap: 1.15rem;
  }
  .shorts-rail-wrap {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }

  .section { padding: 2.5rem 0; }
  .section-head { margin-bottom: 1.75rem; }
  .section-head h2 { font-size: clamp(2.2rem, 3vw, 3rem); }
  .page-hero { padding: 3.5rem 0 2rem; }
  .page-hero h1 { font-size: clamp(2.6rem, 4vw, 3.8rem); }
  .content-prose { max-width: 860px; font-size: 1.12rem; }
  .watch-desc { max-width: 80ch; }
  .watch-section { padding-top: 2.75rem; }
  .hero-brand { min-height: min(78vh, 760px); }
  .hero-logo { width: min(420px, 38vw); }
  .hero-img { height: min(72vh, 680px); }
  .hero-caption .hero-tagline { font-size: clamp(1.8rem, 3vw, 2.8rem); }
  .banner-img { height: min(48vh, 460px); }
  .footer-grid { gap: 2.5rem; padding: 3.5rem 0 2.25rem; }
}

@media (min-width: 1600px) {
  .shell-wide,
  main .container {
    max-width: 1480px;
  }

  .video-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .editor-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .shorts-rail {
    grid-auto-columns: minmax(180px, 210px);
  }
  .shorts-rail-wrap {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  .contact-layout {
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.2fr);
  }
}

@media (min-width: 1920px) {
  .shell-wide,
  main .container {
    max-width: 1680px;
  }

  .video-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.75rem;
  }
  .latest-player {
    grid-template-columns: 1.65fr 1fr;
  }
}

/* Desktop / laptop: show top nav, hide hamburger */
@media (min-width: 992px) {
  .desktop-nav { display: flex; }
  .menu-toggle { display: none; }
  .nav-overlay,
  .mobile-drawer { display: none !important; }
}

/* Large tablets / small desktops */
@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .editor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .latest-player {
    grid-template-columns: 1.35fr 1fr;
    gap: 1.25rem;
  }
}

/* Tablets and below: hamburger + drawer */
@media (max-width: 991.98px) {
  .brand-name { font-size: 1.15rem; }
  .brand-logo { height: 48px; }
  .main-nav { padding: 0.45rem 0; }
  .nav-bar-row { gap: 0.75rem; }

  .latest-player {
    grid-template-columns: 1fr;
  }

  .editor-grid,
  .contact-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 1.75rem 0;
  }
  .section-head {
    align-items: end;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }
  .section-head > div {
    min-width: 0;
    flex: 1 1 auto;
  }
  .section-link {
    width: auto;
    flex-shrink: 0;
    margin-left: auto;
  }

  .hero-brand {
    min-height: min(62vh, 560px);
  }

  .hero-img {
    height: min(62vh, 560px);
  }
  .banner-img {
    height: min(36vh, 300px);
  }

  .page-hero {
    padding: 2.5rem 0 1.5rem;
  }

  .contact-layout {
    gap: 1.5rem;
  }

  .footer-grid {
    text-align: left;
  }

  .filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }
  .filter-pills::-webkit-scrollbar { display: none; }
  .pill { flex-shrink: 0; }
}

/* Large phones / small tablets */
@media (max-width: 768px) {
  .top-tagline { font-size: 0.82rem; }
  .brand-text { display: none; }
  .brand-logo { height: 44px; }

  .content-tabs .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .tabs-row {
    gap: 0.15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabs-row::-webkit-scrollbar { display: none; }

  .hero-brand-inner { padding: 2.5rem 1rem; }
  .hero-logo { width: min(240px, 72vw); }
  .hero-kicker { font-size: 0.95rem; letter-spacing: 0.12em; }
  .hero-lead { font-size: 0.98rem; padding: 0 0.5rem; }
  .hero-caption {
    left: 5%;
    right: 5%;
    bottom: 12%;
    padding: 0;
  }
/*  .hero-caption-logo { height: 42px; }*/
  .hero-caption .hero-tagline { font-size: clamp(1.25rem, 5.5vw, 1.85rem); }
  .hero-caption .hero-sub { font-size: 0.9rem; }

  .latest-player,
  .editor-grid,
  .contact-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section { padding: 1.5rem 0; }
  .section-head {
    margin-bottom: 1.15rem;
    padding-bottom: 0.3rem;
  }
  .section-head h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  .shorts-rail {
    grid-auto-columns: minmax(132px, 160px);
    gap: 0.75rem;
  }

  .shorts-rail-wrap {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .page-hero { padding: 2.25rem 0 1.4rem; }
  .page-hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); margin-bottom: 0.85rem; }
  .filter-pills { gap: 0.35rem; }
  .pill { font-size: 0.8rem; padding: 0.3rem 0.7rem; }

  .watch-section { padding-top: 1.25rem; padding-bottom: 1.5rem; }
  .watch-head h1 { font-size: clamp(1.2rem, 5.5vw, 1.55rem); }
  .watch-actions .btn { flex: 1 1 auto; }
  .short-player { max-width: min(320px, 100%); }
  .related-block h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .footer-grid {
    padding: 2.25rem 1.5rem 1.5rem;
    gap: 1.75rem;
    grid-template-columns: 1fr;
  }
  .footer-logo { height: 52px; }
  .footer-text { max-width: none; }
  .footer-col h3 { margin-bottom: 0.55rem; }
  .social-strip .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .social-strip .hero-actions .btn { width: 100%; max-width: 280px; }

  .editor-photo { width: 120px; height: 120px; }
  .contact-section { padding-top: 1.75rem; padding-bottom: 2.5rem; }
  .contact-form-card { padding: 1.35rem; }
}

/* Phones */
@media (max-width: 576px) {
  .top-bar .container {
    justify-content: space-between;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-brand { min-height: 58vh; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }

  .hero-img { height: 52vh; min-height: 280px; }
  .hero-caption { left: 4%; right: 4%; bottom: 10%; }
  .banner-img { height: 28vh; min-height: 160px; }
  .banner-caption { padding: 1rem; }
  .banner-caption p { font-size: 0.95rem; }

  .latest-meta h3 { font-size: 1.15rem; }
  .video-card h3, .short-card h3 { font-size: 0.95rem; }

  .play-badge {
    width: 40px;
    height: 40px;
  }

  .contact-form-wrap { padding: 1.1rem; }
  .contact-form-card { padding: 1.25rem; }
  .contact-form-modern .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-modern .form-row-2 .form-field {
    margin-bottom: 1rem;
  }
  .btn-contact-send { width: 100%; }
  .content-prose { font-size: 1rem; }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .top-tagline {
    max-width: 55%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .social-icons:not(.social-icons-compact) {
    flex-direction: row;
    align-items: stretch;
  }
  .social-icons:not(.social-icons-compact) .social-icon {
    justify-content: center;
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .brand-logo { height: 38px; }
  .top-tagline { font-size: 0.75rem; max-width: 58%; }
  .shorts-rail {
    grid-auto-columns: minmax(118px, 140px);
  }
  .section { padding: 1.25rem 0; }
}

/* Prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-logo,
  .hero-brand-bg,
  .tag-live,
  .btn-like .like-heart.heart-bounce,
  .ig-like-burst.is-on {
    animation: none !important;
  }
}

.mtv-toast-host {
  z-index: 2100;
}
.mtv-toast-host .toast {
  min-width: min(320px, calc(100vw - 1.5rem));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
