﻿:root {
  --bg: #eceef2;
  --panel: #ffffff;
  --text: #1f2630;
  --muted: #687384;
  --brand: #c20b18;
  --brand-dark: #a60713;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius-lg: 16px;
  --radius-md: 12px;
  --topbar-main-height: 80px;
  --topbar-height: 112px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans Gujarati", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--topbar-height);
  background: var(--brand);
  color: #fff;
}

.topbar-inner {
  width: min(1440px, 96vw);
  height: var(--topbar-main-height);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.header-marquee {
  height: calc(var(--topbar-height) - var(--topbar-main-height));
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--brand);
  overflow: hidden;
}

.header-marquee marquee {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.header-marquee .marquee-msg {
  display: inline-block;
  padding-right: 56px;
}

.header-marquee .marquee-phone {
  color: #ffe082;
  font-weight: 800;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header-logo-image {
  display: block;
  height: 65px;
  width: auto;
  object-fit: contain;
}

.top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.icon-btn svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.layout {
  width: 100%;
  margin: 18px 0 26px;
  padding: 0 8% 0 2%;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
}

.sidebar {
  background: #f4f5f8;
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  height: calc(100vh - (var(--topbar-height) + 22px));
  position: sticky;
  top: calc(var(--topbar-height) + 2px);
  overflow: auto;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #dee3ea;
  padding-bottom: 14px;
}

.logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f5303f;
  color: #fff;
  font-size: 0.82rem;
}

.logo-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.85rem;
}

.logo-sub {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.sidebar-menu {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.sidebar-menu a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 10px;
  border-radius: 10px;
  color: #4b5767;
  font-size: 0.93rem;
}

.menu-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-text strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.menu-text small {
  color: #6c7787;
  font-size: 0.75rem;
  line-height: 1.2;
}

.sidebar-menu li.active a,
.sidebar-menu a:hover {
  background: #e8ecf3;
  color: var(--brand);
  font-weight: 600;
}

.sidebar-menu li.active .menu-text small,
.sidebar-menu a:hover .menu-text small {
  color: #7d4f56;
}

.content {
  min-width: 0;
}

.page-heading {
  background: #f7f8fb;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-heading-photo {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-heading-content {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.page-heading-content > div {
  min-width: 0;
}

.page-heading h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  line-height: 1.05;
}

.page-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pill-btn {
  align-self: center;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-card {
  margin-top: 16px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow);
  background: #000;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-inline-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 25%, rgba(0, 0, 0, 0.72) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.hero-card.playing .hero-overlay {
  display: none;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f2f2f2;
  font-size: 0.84rem;
}

.live-pill {
  background: #e71621;
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 0.72rem;
}

.hero-overlay h2 {
  margin: 12px 0 16px;
  max-width: 900px;
  color: #fff;
  line-height: 1.16;
  font-size: clamp(1.45rem, 3vw, 3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.action-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
}

.action-btn.primary {
  background: #ed1c24;
  border-color: #ed1c24;
}

.video-section {
  margin-top: 22px;
}

.all-news-layout {
  margin-top: 22px;
}

.all-news-block + .all-news-block {
  margin-top: 24px;
}

.is-hidden {
  display: none !important;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.section-head h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.65rem);
}

.section-head a {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.video-grid {
  margin-top: 12px;
  display: grid;
  gap: 14px;
}

.empty-state {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  color: #687384;
  font-size: 0.9rem;
  box-shadow: 0 3px 12px rgba(24, 35, 45, 0.08);
}

.video-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
  background: var(--panel);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(24, 35, 45, 0.1);
}

.thumb-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-badge {
  position: absolute;
  left: 12px;
  bottom: 10px;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.95rem;
}

.inline-player {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-info {
  padding: 10px 12px 12px;
}

.video-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  font-size: 0.95rem;
  font-weight: 700;
}

.video-meta {
  margin: 6px 0 0;
  color: #687384;
  font-size: 0.8rem;
}

.subscribe-strip {
  margin-top: 26px;
  background: linear-gradient(120deg, #eb1520, #ff283a);
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.subscribe-strip .label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.subscribe-strip h4 {
  margin: 8px 0;
  font-size: clamp(1.3rem, 2.6vw, 2.4rem);
}

.subscribe-strip p {
  margin: 0;
  max-width: 760px;
}

.subscribe-cta {
  display: inline-block;
  margin-top: 18px;
  min-height: 48px;
  line-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  background: #1a2330;
  color: #fff;
  font-weight: 700;
}

.subscribe-form {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input {
  flex: 1 1 300px;
  min-height: 48px;
  border-radius: 10px;
  border: 0;
  padding: 0 14px;
  font-family: inherit;
}

.subscribe-form button {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  border: 0;
  background: #1a2330;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  margin-top: 28px;
  text-align: center;
  padding: 28px 10px 10px;
  color: #5e6978;
}

.footer h5 {
  margin: 0 0 10px;
  color: #e01521;
  font-size: 1.2rem;
}



.footer p {
  font-size: 0.82rem;
  margin: 8px 0 0;
}

.footer .ocean-link {
  color: #e01521;
  font-weight: 700;
}

.footer .ocean-link:hover {
  text-decoration: underline;
}

.mobile-only {
  display: none;
  z-index: 2;
  margin-right: auto;
}

@media (max-width: 1250px) {
  .layout {
    grid-template-columns: 210px 1fr;
  }

  .video-grid.cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  :root {
    --topbar-main-height: 64px;
    --topbar-height: 96px;
  }

  .mobile-only {
    display: grid;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: min(320px, 86vw);
    height: calc(100vh - var(--topbar-height));
    z-index: 60;
    transform: translateX(-102%);
    transition: transform 0.28s ease;
    border-radius: 0 18px 18px 0;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .hero-card {
    min-height: 380px;
  }

  .video-grid.cols-3,
  .video-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .layout {
    width: 100%;
    margin-top: 12px;
    padding: 0 10px;
  }

  .topbar-inner {
    width: 95vw;
    padding: 0;
  }

  .header-logo-image {
    height: 55px;
  }

  .page-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 10px;
    padding: 15px 14px;
  }

  .page-heading-photo {
    width: 100%;
    height: 100%;
    min-height: 120px;
    border-radius: 12px;
  }

  .page-heading-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    padding-right: 0;
    gap: 0 !important;

  }

  .page-heading h1 {
    font-size: 1.45rem;
  }

  .page-heading p {
    margin-top: 6px;
    font-size: 0.88rem;
  }

  .page-heading .pill-btn {
    position: static;
    margin-top: 10px;
    align-self: flex-start;
    padding: 8px 16px;
  }

  .hero-card {
    min-height: 300px;
  }

  .hero-overlay {
    padding: 14px;
  }

  .action-btn {
    padding: 10px 14px;
  }

  .video-grid.cols-3,
  .video-grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .subscribe-strip {
    padding: 20px 16px;
    border-radius: 16px;
  }
}
