
@font-face {
  font-family: "Font1";
  src: url("../fonts/BPGLarge.ttf")
}


@font-face {
  font-family: "Font2";
  src: url("../fonts/HelveticaNeueLTGEO-55Roman.eot") format("embedded-opentype"), url("../fonts/HelveticaNeueLTGEO-55Roman.otf") format("opentype"), url("../fonts/HelveticaNeueLTGEO-55Roman.woff") format("woff"), url("../fonts/HelveticaNeueLTGEO-55Roman.ttf") format("truetype")
}


:root {
  --primary: #0d6efd;
  --primary-dark: #0a49b3;
  --ink: #111322;
  --muted: #5a5f73;
  --bg: #f5f7fb;
  --card: #ffffff;
  --accent-soft: rgba(13,110,253,.08);
}

* {
  box-sizing: border-box;
}
/* Default text */
html, body {
    font-family: "Font1", sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: "Font2", sans-serif;
}

body {
  font-family: 'Font2', sans-serif;
  background: var(--bg);
  color: var(--ink);
}


a {
    color: #0d6efd; /* modern blue */
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}

a:hover {
    color: #084298;
    text-decoration: underline;
}


/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 40px rgba(10,12,28,.08);
  backdrop-filter: blur(14px);
}
.top-info {
  border-bottom: 1px solid #edf0f7;
  font-size: .85rem;
  color: var(--muted);
}
.top-info .info-row {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.info-links a {
  color: var(--muted);
  font-weight: 500;
}
.info-links a:hover {
  color: var(--primary);
}
.main-header {
  padding: .85rem 0;
}
.main-header .container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar-brand {
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--ink);
  font-size: 1.4rem;
}
.nav-search {
  flex: 1;
  max-width: 520px;
}
.nav-search input {
  border-radius: 999px;
  border: 1px solid #e1e5ee;
  padding: 11px 18px;
  font-size: .95rem;
}
.nav-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
}
.nav-search .form-control {
  padding-right: 70px;
}
.nav-link {
  color: var(--ink) !important;
  font-weight: 600;
  font-size: .95rem;
}
.nav-link.active,
.nav-link:hover {
  color: var(--primary) !important;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.menu-buttons {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.menu-buttons .btn-light {
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
}
.menu-buttons .btn-dark {
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
}
.menu-toggle {
  border: none;
  background: #f0f3fb;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--ink);
}
.menu-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13,110,253,.2);
}
.offcanvas-nav {
  border: none;
  background: rgba(255,255,255,.98);
  box-shadow: 0 25px 60px rgba(13,18,38,.18);
}

.btn-main {
  background: var(--primary);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(13,110,253,.3);
}
.btn-outline {
  border: 1px solid rgba(13,110,253,.3);
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
}

/* Hero */
.hero {
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  background: linear-gradient(120deg, #eff4ff 0%, #ffffff 45%, #f6f6ff 100%);
}
.hero-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 600;
  color: var(--primary);
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 1.2rem;
}
.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
}
.hero-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero-meta span {
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid rgba(15,20,35,.07);
}
.hero-show-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.hero-show-card {
  background: #fff;
  border: 1px solid rgba(14,18,38,.08);
  border-radius: 24px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-show-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(10,12,28,.12);
}
.hero-show-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-show-info img {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  object-fit: cover;
}
.hero-show-info h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}
.hero-show-info small {
  color: var(--muted);
}
.hero-play {
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 12px 30px rgba(15,17,33,.25);
}
.hero-play:hover {
  background: var(--primary);
}

/* Sections */
.section-title {
  font-weight: 800;
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--muted);
  margin-bottom: 30px;
}

.show-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 18px 45px rgba(6,15,51,.08);
  height: 100%;
}
.show-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.show-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(6,15,51,.12);
}
.show-card h5 {
  font-weight: 700;
}
.badge-genre {
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-size: .8rem;
  padding: 5px 12px;
  border-radius: 999px;
}

.trending-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: none;
  box-shadow: none;
}
.show-card-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.trending-card img {
  height: 320px;
  object-fit: cover;
  transition: transform .5s ease;
}
.trending-card:hover img {
  transform: scale(1.08);
}
.wall-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(4,5,18,0), rgba(4,6,18,.92));
  color: #fff;
  border-radius: 0 0 28px 28px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .3s ease, transform .3s ease;
}
.trending-card:hover .wall-info {
  opacity: 1;
  transform: translateY(0);
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,7,20,.55);
  opacity: 0;
  transition: opacity .25s ease;
}
.trending-card:hover .play-overlay {
  opacity: 1;
}
.play-overlay span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.45);
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
}
.wall-info h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
}
.wall-info span {
  display: block;
  color: rgba(255,255,255,.75);
  margin-bottom: .5rem;
}
.wall-info p {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: .92rem;
}
.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.wall-grid > div {
  display: flex;
}

@media (max-width: 991px) {
  .wall-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-show-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .main-header .container {
    flex-wrap: wrap;
  }
  .nav-search {
    order: 3;
    width: 100%;
    max-width: none;
  }
  .menu-buttons {
    display: none;
  }
}
@media (max-width: 575px) {
  .wall-grid {
    grid-template-columns: 1fr;
  }
  .hero-show-grid {
    grid-template-columns: 1fr;
  }
  .info-row {
    flex-direction: column;
    height: auto;
    padding: .5rem 0;
    text-align: center;
  }
}

/* Lineup */
.lineup-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(20,20,40,.08);
  height: 100%;
}
.lineup-card small {
  color: var(--muted);
}
.lineup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  border-radius: 999px;
  border: 1px solid rgba(17,19,34,.1);
  padding: 6px 14px;
  font-size: .85rem;
  color: var(--muted);
}

/* Schedule */
.schedule-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(16,17,29,.08);
}
.schedule-item + .schedule-item {
  border-top: 1px solid #eef0f5;
  margin-top: 18px;
  padding-top: 18px;
}
.schedule-item strong {
  font-size: 1.1rem;
}

/* CTA */
.cta {
  background: linear-gradient(120deg, #0d6efd, #7c3aed);
  border-radius: 32px;
  color: #fff;
  padding: 3rem;
  box-shadow: 0 50px 80px rgba(14,18,38,.3);
}
.cta h3 {
  font-weight: 700;
}

/* Footer */
footer {
  background: #fff;
  color: var(--muted);
  border-top: 1px solid #eceef5;
}
footer a {
  color: var(--muted);
}
footer a:hover {
  color: var(--primary);
}

.btn-live {
    background: #e10600;
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 20px;
    box-shadow: 0 0 0 rgba(225, 6, 0, 0.7);
    animation: livePulse 1.6s infinite;
}

.btn-live:hover {
    background: #ff1a14;
    color: #fff;
}

/* Sparkle / pulse effect */
@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.8);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(225, 6, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 6, 0, 0);
    }
}

/* Contact button (still) */
.btn-contact {
    background: #000;
    color: #fff;
    border: 1px solid #222;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 20px;
}

.btn-contact:a {  color: #fff; }
.btn-contact:hover {
    background: #000;
    color: #fff;
}


.hero-carousel {
    background: #000;
    position: relative;
}

/* Height */
.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 550px;
}

/* Slide base */
.carousel-item {
    position: relative;
    background: #000;
    overflow: hidden;
}

/* Blurred background */
.carousel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(25px);
    transform: scale(1.25);
    opacity: 0.35;
}

/* Center image */
.carousel-center-img {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Bottom shadow fade */
.carousel-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 4;
}

/* Title overlay */
.carousel-caption-custom {
    position: absolute;
    left: 80px;
    bottom: 120px;
    z-index: 5;
    color: #fff;
}

.carousel-caption-custom h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 6px;
}

.carousel-caption-custom p {
    font-size: 18px;
    opacity: 0.8;
}

/* Navigation always visible */
.carousel-control-prev.always-visible,
.carousel-control-next.always-visible {
    opacity: 1;
    width: 70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 8px rgba(0,0,0,.9));
}

.news-slider-section {
    background: linear-gradient(135deg, #1b1f3b, #111);
    padding: 50px 0;
}

/* Card */
.news-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    text-decoration: none;
}

/* Image */
.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

/* Dark overlay */
.news-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
}

/* Title inside image */
.news-title {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

/* Hover */
.news-card:hover img {
    transform: scale(1.08);
}
.news-grid-section {
    background: #0b0d13;
    padding: 60px 0;
}

/* Header */
.news-title {
    color: #fff;
    font-weight: 800;
    font-size: 26px;
}

/* Card */
.news-card {
    position: relative;
    display: block;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
    transition: transform .3s ease, box-shadow .3s ease;
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

/* Overlay */
.news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.25), transparent);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news-overlay h5 {
    color: #fff;
    font-weight: 800;
    margin: 0 0 4px;
    font-size: 17px;
}

.news-overlay span {
    color: #ddd;
    font-size: 13px;
}

/* Hover */
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

.news-card:hover img {
    transform: scale(1.08);
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 16px;
    background: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .25s ease;
}

.category-card i {
    font-size: 34px;
    color: #0d6efd;
}

.category-card span {
    font-size: 16px;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
    color: #0d6efd;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 40px rgba(10,12,28,.08);
  backdrop-filter: blur(14px);
}
.top-info {
  border-bottom: 1px solid #edf0f7;
  font-size: .85rem;
  color: var(--muted);
}
.top-info .info-row {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.info-links a {
  color: var(--muted);
  font-weight: 500;
}
.info-links a:hover {
  color: var(--primary);
}
.main-header {
  padding: .85rem 0;
}
.main-header .container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar-brand {
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--ink);
  font-size: 1.4rem;
}
.nav-search {
  flex: 1;
  max-width: 520px;
}
.nav-search input {
  border-radius: 999px;
  border: 1px solid #e1e5ee;
  padding: 11px 18px;
  font-size: .95rem;
}
.nav-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
}
.nav-search .form-control {
  padding-right: 70px;
}
.nav-link {
  color: var(--ink) !important;
  font-weight: 600;
  font-size: .95rem;
}
.nav-link.active,
.nav-link:hover {
  color: var(--primary) !important;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.menu-buttons {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.menu-buttons .btn-light {
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
}
.menu-buttons .btn-dark {
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
}
.menu-toggle {
  border: none;
  background: #f0f3fb;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--ink);
}
.menu-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13,110,253,.2);
}
.offcanvas-nav {
  border: none;
  background: rgba(255,255,255,.98);
  box-shadow: 0 25px 60px rgba(13,18,38,.18);
}

.btn-main {
  background: var(--primary);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(13,110,253,.3);
}
.btn-outline {
  border: 1px solid rgba(13,110,253,.3);
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
}

/* Video Experience */
.video-experience {
  padding-top: 6.5rem;
  padding-bottom: 3rem;
}
.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
}
.player-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.video-wrapper {
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 35px 80px rgba(12,15,33,.35);
}
.video-wrapper iframe,
.video-wrapper video {
  border: none;
  width: 100%;
  height: 100%;
  display: block;
}
.video-meta {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(10,12,28,.12);
}
.video-meta h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .75rem;
}
.video-meta p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.video-actions button {
  border-radius: 999px;
  border: 1px solid rgba(15,20,35,.12);
  padding: .55rem 1.1rem;
  background: #f5f7ff;
  font-weight: 600;
  color: var(--ink);
}
.video-actions button i {
  margin-right: .35rem;
}
.channel-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.channel-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.channel-meta img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #eef0f8;
}
.channel-meta div span {
  display: block;
  color: var(--muted);
}
.subscribe-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: .65rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 45px rgba(13,110,253,.35);
}
.video-stats {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: var(--muted);
}
.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.video-tags span {
  background: var(--accent-soft);
  color: var(--primary);
  padding: .4rem .9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
}
.playlist-column {
  position: sticky;
  top: 110px;
}
.playlist-card {
  background: #fff;
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: 0 25px 70px rgba(6,8,22,.12);
}
.playlist-card h4 {
  font-weight: 800;
  margin-bottom: 1rem;
}
.playlist-item {
  display: flex;
  gap: 1rem;
  padding: .75rem 0;
  border-top: 1px solid #f0f2f7;
}
.playlist-item:first-of-type {
  border-top: none;
  padding-top: 0;
}
.playlist-thumb {
  width: 110px;
  height: 60px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.playlist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.playlist-thumb span {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,.7);
  color: #fff;
  padding: .15rem .45rem;
  border-radius: 6px;
  font-size: .75rem;
}
.playlist-info h6 {
  margin: 0;
  font-weight: 700;
}
.playlist-info small {
  display: block;
  color: var(--muted);
}
.playlist-info span {
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
}
.playlist-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #eef0f6;
}
.playlist-cta button {
  border: none;
  background: #f2f4ff;
  color: var(--primary);
  font-weight: 600;
  border-radius: 999px;
  padding: .55rem 1.2rem;
}
.playlist-cta a {
  font-weight: 600;
  color: var(--ink);
}
.chapters-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 15px 45px rgba(15,17,28,.12);
}
.chapters-card h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.chapter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 0;
  border-top: 1px solid #f0f2f7;
}
.chapter:first-of-type {
  border-top: none;
  padding-top: 0;
}
.chapter span {
  font-weight: 600;
}
.chapter small {
  color: var(--muted);
}

/* Down-page shows */
.more-shows {
  margin-top: 4rem;
}
.more-shows-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.more-shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.show-tile {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(8,10,28,.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.show-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(6,8,22,.18);
}
.show-thumb {
  position: relative;
  aspect-ratio: 16/9;
}
.show-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.show-thumb span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,.65);
  color: #fff;
  padding: .25rem .65rem;
  border-radius: 999px;
  font-size: .8rem;
}
.show-body {
  padding: 1.25rem;
}
.show-body h6 {
  font-weight: 700;
  margin-bottom: .35rem;
}
.show-body p {
  margin: 0;
  color: var(--muted);
}

/* Sections */
.section-title {
  font-weight: 800;
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--muted);
  margin-bottom: 30px;
}

.show-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 18px 45px rgba(6,15,51,.08);
  height: 100%;
}
.show-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.show-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(6,15,51,.12);
}
.show-card h5 {
  font-weight: 700;
}
.badge-genre {
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-size: .8rem;
  padding: 5px 12px;
  border-radius: 999px;
}

.trending-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: none;
  box-shadow: none;
}
.show-card-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.trending-card img {
  height: 320px;
  object-fit: cover;
  transition: transform .5s ease;
}
.trending-card:hover img {
  transform: scale(1.08);
}
.wall-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(4,5,18,0), rgba(4,6,18,.92));
  color: #fff;
  border-radius: 0 0 28px 28px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .3s ease, transform .3s ease;
}
.trending-card:hover .wall-info {
  opacity: 1;
  transform: translateY(0);
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,7,20,.55);
  opacity: 0;
  transition: opacity .25s ease;
}
.trending-card:hover .play-overlay {
  opacity: 1;
}
.play-overlay span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.45);
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
}
.wall-info h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
}
.wall-info span {
  display: block;
  color: rgba(255,255,255,.75);
  margin-bottom: .5rem;
}
.wall-info p {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: .92rem;
}
.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.wall-grid > div {
  display: flex;
}

@media (max-width: 991px) {
  .video-layout {
    grid-template-columns: 1fr;
  }
  .playlist-column {
    position: static;
    width: 100%;
  }
  .video-meta {
    padding: 1.5rem;
  }
  .wall-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-show-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .main-header .container {
    flex-wrap: wrap;
  }
  .nav-search {
    order: 3;
    width: 100%;
    max-width: none;
  }
  .menu-buttons {
    display: none;
  }
}
@media (max-width: 575px) {
  .video-actions button {
    width: 100%;
    justify-content: center;
  }
  .channel-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .playlist-item {
    flex-direction: column;
  }
  .playlist-thumb {
    width: 100%;
    height: 180px;
  }
  .wall-grid {
    grid-template-columns: 1fr;
  }
  .hero-show-grid {
    grid-template-columns: 1fr;
  }
  .info-row {
    flex-direction: column;
    height: auto;
    padding: .5rem 0;
    text-align: center;
  }
}

/* Lineup */
.lineup-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(20,20,40,.08);
  height: 100%;
}
.lineup-card small {
  color: var(--muted);
}
.lineup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  border-radius: 999px;
  border: 1px solid rgba(17,19,34,.1);
  padding: 6px 14px;
  font-size: .85rem;
  color: var(--muted);
}

/* Schedule */
.schedule-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(16,17,29,.08);
}
.schedule-item + .schedule-item {
  border-top: 1px solid #eef0f5;
  margin-top: 18px;
  padding-top: 18px;
}
.schedule-item strong {
  font-size: 1.1rem;
}

/* CTA */
.cta {
  background: linear-gradient(120deg, #0d6efd, #7c3aed);
  border-radius: 32px;
  color: #fff;
  padding: 3rem;
  box-shadow: 0 50px 80px rgba(14,18,38,.3);
}
.cta h3 {
  font-weight: 700;
}

/* Footer */
footer {
  background: #fff;
  color: var(--muted);
  border-top: 1px solid #eceef5;
}
footer a {
  color: var(--muted);
}
footer a:hover {
  color: var(--primary);
}
.news-slider-section {
    background: linear-gradient(135deg, #1b1f3b, #111);
    padding: 50px 0;
}

/* Card */
.news-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    text-decoration: none;
}

/* Image */
.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

/* Dark overlay */
.news-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
}

/* Title inside image */
.news-title {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

/* Hover */
.news-card:hover img {
    transform: scale(1.08);
}