/* ======================================== */
/* CSS VARIABLES                            */
/* ======================================== */
:root {
  --brand-color: #ff9327;
  --accent-color: #145baf;
  --menu-drawer-bg: rgba(6, 16, 26, 0.98);
  --menu-accent-rgb: 255, 147, 39;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #07131d;
  color: #ffffff;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}


/* ======================================== */
/* HEADER & NAVIGATION                      */
/* ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 16, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  min-width: 0;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #dce7f3;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav a:hover,
.main-nav a.active {
  background: #ff9327;
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0c1c2c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0 14px;
  height: 46px;
  width: 210px;
  flex-shrink: 0;
}

.search-box i {
  color: #9db2c7;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  width: 100%;
  min-width: 0;
}

.search-box input::placeholder {
  color: #88a0b7;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 147, 39, 0.15);
  color: var(--brand-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 147, 39, 0.25);
  transform: scale(1.05);
}

.menu-toggle i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.menu-toggle[aria-expanded="true"] i {
  transform: rotate(90deg);
}


/* ======================================== */
/* TRENDING STRIP                           */
/* ======================================== */
.trending-strip {
  position: sticky;
  top: 84px;
  z-index: 999;
  background: #0b1a29;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trending-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
}

.trending-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-color);
  white-space: nowrap;
}

.trending-list-wrap {
  overflow: hidden;
  width: 100%;
}

.trending-list {
  display: flex;
  gap: 26px;
  white-space: nowrap;
  animation: scrollTicker 28s linear infinite;
}

.trending-list a {
  color: #dfe8f1;
  font-size: 0.95rem;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-40%); }
}


.trending-list-wrap {
  overflow: hidden;
  position: relative;
}

.trending-list {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  min-width: max-content;
}

.trending-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
}

.trending-item:hover {
  text-decoration: underline;
}


/* ======================================== */
/* MAIN CONTENT                             */
/* ======================================== */
main {
  padding: 38px 0 60px;
}


/* ======================================== */
/* SHARED CARD SURFACE                      */
/* ======================================== */
.hero-player-card,
.hero-copy-card,
.content-card,
.stream-card,
.page-hero,
.radio-player-card {
  background: linear-gradient(180deg, rgba(15, 30, 46, 0.95), rgba(10, 22, 34, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}


/* ======================================== */
/* HERO SECTION                             */
/* ======================================== */
.hero-section {
  padding-top: 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.hero-player-card,
.hero-copy-card {
  min-height: 100%;
}

.hero-player-card {
  padding: 22px;
}

.live-now-chip {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: rgba(255, 147, 39, 0.16);
  color: var(--brand-color);
  vertical-align: middle;
  line-height: 1;
}

.tv-schedule-item.is-live,
.fm-slot.is-live,
.schedule-slot.is-live {
  border-color: rgba(255, 147, 39, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 147, 39, 0.12);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 147, 39, 0.16);
  color: var(--brand-color);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 147, 39, 0.08);
}

.video-player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.player-unmute {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-copy-card {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.small-title {
  color: var(--brand-color);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.big-title {
  font-size: clamp(2.2rem, 3.2vw, 3.8rem);
  line-height: 1.04;
  font-weight: 900;
  margin-bottom: 18px;
  max-width: 10ch;
}

.sub-text {
  color: #b7c8d8;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: none;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ======================================== */
/* BUTTONS                                  */
/* ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--brand-color);
  color: #0c1620;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  background: rgba(20, 91, 175, 0.18);
  color: #ffffff;
  border: 1px solid rgba(20, 91, 175, 0.35);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.hero-buttons .btn {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.97rem;
}


/* ======================================== */
/* SECTION LAYOUT                           */
/* ======================================== */
.featured-news-section,
.stream-cards-section,
.inner-page {
  margin-top: 36px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: 1.8rem;
  font-weight: 800;
}

.view-all-link {
  color: var(--brand-color);
  font-weight: 700;
}


/* ======================================== */
/* NEWS TABS & CARDS                        */
/* ======================================== */
.news-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.news-tab {
  background: #0e2031;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d6e3ef;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.news-tab.active,
.news-tab:hover {
  background: rgba(20, 91, 175, 0.18);
  border-color: rgba(20, 91, 175, 0.3);
  color: #fff;
}

.news-carousel,
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.news-card {
  background: #0d1d2d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-card-body {
  padding: 18px;
}

.news-category {
  display: inline-block;
  color: var(--brand-color);
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.news-title {
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}

.news-excerpt {
  color: #b7c8d8;
  font-size: 0.94rem;
  margin-bottom: 14px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
  color: #95abbe;
}

.news-read-more {
  color: var(--accent-color);
  font-weight: 700;
}


/* ======================================== */
/* STREAM CARDS                             */
/* ======================================== */
.stream-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.stream-card {
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: 0.25s ease;
}

.stream-card:hover {
  transform: translateY(-4px);
}

.stream-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(20, 91, 175, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-color);
  flex-shrink: 0;
}

.stream-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.stream-card-content p {
  color: #b7c8d8;
  margin-bottom: 12px;
}

.stream-card-link {
  color: var(--brand-color);
  font-weight: 700;
}


/* ======================================== */
/* PAGE CONTENT                             */
/* ======================================== */
.page-hero {
  padding: 30px;
  margin-bottom: 24px;
}

.content-card {
  padding: 28px;
}

.content-card h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.styled-list {
  display: grid;
  gap: 12px;
  color: #c3d2df;
}

.styled-list li {
  padding-left: 18px;
  position: relative;
}

.styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-color);
}


/* ======================================== */
/* RADIO PLAYER                             */
/* ======================================== */
.radio-player-card {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.radio-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: rgba(20, 91, 175, 0.18);
  color: var(--brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.radio-copy {
  flex: 1;
}

.audio-player {
  width: 100%;
  min-width: 280px;
}


/* ======================================== */
/* FORMS                                    */
/* ======================================== */
.contact-form-grid,
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width,
.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #dbe7f2;
}

.form-group input,
.form-group textarea,
.newsletter-form input {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1a29;
  color: #ffffff;
  outline: none;
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}


/* ======================================== */
/* FOOTER                                   */
/* ======================================== */
.site-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #08131e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 24px;
  padding-bottom: 28px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-brand h3 {
  margin-bottom: 8px;
}

.footer-brand p,
.footer-col p,
.footer-col li a {
  color: #aec0d1;
}

.footer-col h4 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #0e2031;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9bb0c2;
  font-size: 0.92rem;
}

.footer-bottom.single-line {
  padding: 20px 0;
}


/* ======================================== */
/* MODAL                                    */
/* ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  width: min(760px, 100%);
  background: #0c1723;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #122235;
  color: #fff;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}


/* ======================================== */
/* MOBILE MENU OVERLAY                      */
/* ======================================== */
.menu-overlay {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  height: calc(100vh - 84px);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-footer {
  display: none;
}


/* ======================================== */
/* MOBILE MENU ANIMATION                    */
/* ======================================== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.main-nav.show a {
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.main-nav.show a:nth-child(1) { animation-delay: 0.05s; }
.main-nav.show a:nth-child(2) { animation-delay: 0.1s; }
.main-nav.show a:nth-child(3) { animation-delay: 0.15s; }
.main-nav.show a:nth-child(4) { animation-delay: 0.2s; }
.main-nav.show a:nth-child(5) { animation-delay: 0.25s; }
.main-nav.show a:nth-child(6) { animation-delay: 0.3s; }
.main-nav.show a:nth-child(7) { animation-delay: 0.35s; }
.main-nav.show a:nth-child(8) { animation-delay: 0.4s; }
.main-nav.show a:nth-child(9) { animation-delay: 0.45s; }


/* ======================================== */
/* RESPONSIVE - MEDIUM                      */
/* ======================================== */
@media (max-width: 1100px) {
  .news-carousel,
  .news-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 22px;
  }

  .hero-copy-card {
    padding: 28px 24px;
  }

  .big-title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    max-width: 12ch;
  }

  .sub-text {
    font-size: 0.98rem;
    max-width: 42ch;
  }
}


/* ======================================== */
/* RESPONSIVE - TABLET & MOBILE NAV         */
/* ======================================== */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
    position: relative;
  }

  .brand {
    order: 1;
  }

  .header-actions {
    order: 2;
    margin-right: auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 3;
  }

  .main-nav {
    display: flex !important;
    position: fixed;
    top: 84px;
    left: -100%;
    width: 84%;
    max-width: 360px;
    height: calc(100vh - 84px - 150px);
    background: var(--menu-drawer-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: stretch;
    padding: 28px 20px 20px;
    gap: 10px;
    transition: left 0.3s ease;
    z-index: 1000;
    border-right: 1px solid rgba(255, 147, 39, 0.18);
    overflow-y: auto;
  }

  .main-nav.show {
    left: 0;
  }

  .main-nav::before {
    content: 'Menu';
    display: block;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 16px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 147, 39, 0.25);
  }

  .main-nav a {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    color: #dce7f3;
    background: rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
  }

  .main-nav a[href="/"]::before,
  .main-nav a[href*="home"]::before {
    content: '\f015';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 24px;
    color: var(--brand-color);
    font-size: 1.1rem;
  }

  .main-nav a[href*="about"]::before {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 24px;
    color: var(--brand-color);
    font-size: 1.1rem;
  }

  .main-nav a[href*="babatv"]::before,
  .main-nav a[href*="tv"]::before {
    content: '\f03d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 24px;
    color: var(--brand-color);
    font-size: 1.1rem;
  }

  .main-nav a[href*="babafm"]::before,
  .main-nav a[href*="fm"]::before,
  .main-nav a[href*="radio"]::before {
    content: '\f8df';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 24px;
    color: var(--brand-color);
    font-size: 1.1rem;
  }

  .main-nav a[href*="news"]::before {
    content: '\f1ea';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 24px;
    color: var(--brand-color);
    font-size: 1.1rem;
  }

  .main-nav a[href*="contact"]::before {
    content: '\f0e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 24px;
    color: var(--brand-color);
    font-size: 1.1rem;
  }

  .main-nav a:not([class*="icon"])::before {
    content: '\f0c9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 24px;
    color: var(--brand-color);
    font-size: 1.1rem;
    opacity: 0.8;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(255, 147, 39, 0.12);
    border-color: rgba(255, 147, 39, 0.28);
    transform: translateX(4px);
    color: #ffffff;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 147, 39, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .main-nav a:hover::after {
    left: 100%;
  }

  .mobile-menu-footer {
    display: block;
    position: fixed;
    left: -100%;
    bottom: 0;
    width: 84%;
    max-width: 360px;
    min-height: 150px;
    background: var(--menu-drawer-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 18px 20px 20px;
    border-right: 1px solid rgba(255, 147, 39, 0.18);
    border-top: 1px solid rgba(255, 147, 39, 0.18);
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .mobile-menu-footer.show {
    left: 0;
  }

  .menu-footer-content p {
    color: #c9d6e2;
    font-size: 0.9rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .menu-footer-content .social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }

  .menu-footer-content .social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 147, 39, 0.12);
    border: 1px solid rgba(255, 147, 39, 0.22);
    color: var(--brand-color);
    transition: all 0.25s ease;
  }

  .menu-footer-content .social-icons a:hover {
    transform: translateY(-2px);
    background: rgba(255, 147, 39, 0.18);
  }

  .menu-footer-content .social-icons a i {
    font-size: 1rem;
    color: var(--brand-color);
  }

  .menu-footer-content .copyright {
    font-size: 0.78rem;
    color: #7f93a7;
    line-height: 1.5;
  }

  .hero-grid,
  .stream-cards-grid,
  .contact-form-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-player-card {
    padding: 18px;
  }

  .hero-copy-card {
    padding: 26px 22px;
  }

  .big-title {
    font-size: clamp(2rem, 7vw, 3.1rem);
    max-width: none;
  }

  .sub-text {
    max-width: none;
    margin-bottom: 22px;
  }

  .search-box input {
    width: 120px;
  }

  .trending-strip {
    top: 84px;
  }
}


/* ======================================== */
/* RESPONSIVE - SMALL MOBILE                */
/* ======================================== */
@media (max-width: 640px) {
  .news-carousel,
  .news-list-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    order: 3;
    margin-right: 0;
    margin-top: 12px;
  }

  .menu-toggle {
    order: 2;
  }

  .brand {
    order: 1;
  }

  .search-box {
    flex: 1;
    width: 100%;
  }

  .search-box input {
    width: 100%;
  }

  .main-nav,
  .mobile-menu-footer {
    width: 88%;
    max-width: none;
  }

  .menu-footer-content .social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 18px 0;
  }

  .hero-section {
    padding-top: 6px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-player-card,
  .hero-copy-card,
  .content-card,
  .page-hero,
  .stream-card,
  .radio-player-card {
    padding: 20px;
  }

  .hero-player-card,
  .hero-copy-card {
    border-radius: 22px;
  }

  .live-pill {
    min-height: 36px;
    padding: 0 15px;
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .video-player-wrap {
    border-radius: 18px;
  }

  .player-unmute {
    right: 10px;
    bottom: 10px;
    padding: 9px 13px;
    font-size: 0.88rem;
  }

  .hero-copy-card {
    padding: 22px 18px;
  }

  .small-title {
    font-size: 0.88rem;
    margin-bottom: 12px;
  }

  .big-title {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .sub-text {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 50px;
  }
}

/* ======================================== */
/* ABOUT PAGE                               */
/* ======================================== */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(6,16,26,0.88) 0%, rgba(6,16,26,0.58) 45%, rgba(6,16,26,0.72) 100%),
    url('/admin/public/uploads/images/2026/04/20260405165140_df461c8bf22647ff.jpg') center center / cover no-repeat;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  margin-bottom: 28px;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.2));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 72px 40px;
  margin: 0 auto;
  text-align: center;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(20, 91, 175, 0.18);
  border: 1px solid rgba(20, 91, 175, 0.35);
  color: #dfefff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-hero-title {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 18px;
  max-width: none;
}

.about-hero-title span {
  color: var(--accent-color);
}

.about-hero-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #d4deea;
  max-width: 58ch;
  margin-bottom: 28px;
}

.about-hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.about-intro-card {
  margin-bottom: 28px;
}

.about-intro-card,
.about-platforms-card {
  margin-top: 24px;
}

.about-section-head {
  margin-bottom: 10px;
}

.about-block {
  margin-top: 30px;
}

.about-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-journey-card {
  background: #0d1d2d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 22px 20px;
  transition: 0.25s ease;
}

.about-journey-card:hover {
  transform: translateY(-4px);
}

.about-journey-year {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--brand-color);
  margin-bottom: 10px;
}

.about-journey-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.about-journey-card p {
  color: #b7c8d8;
  font-size: 0.95rem;
}

.about-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.about-platform-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px 20px;
}

.about-platform-box h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.about-platform-box p {
  color: #b7c8d8;
}

.about-team-head {
  display: block;
}

.about-team-intro {
  color: #b7c8d8;
  max-width: 62ch;
  margin-top: 8px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.about-team-card {
  text-align: left;
}

.about-team-photo {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d1d2d;
  margin-bottom: 14px;
}

.about-team-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-team-card h3 {
  font-size: 1.06rem;
  margin-bottom: 6px;
}

.about-team-card p {
  color: #8db8ef;
  font-size: 0.95rem;
}

.about-app-banner {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  background: linear-gradient(135deg, #1886c9, #1173af);
  border-radius: 24px;
  color: #fff;
}

.about-app-banner h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.about-app-banner p {
  max-width: 52ch;
  color: rgba(255,255,255,0.92);
}

.about-app-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(7, 19, 29, 0.95);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  transition: 0.25s ease;
}

.about-store-badge i {
  font-size: 1.4rem;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-text span {
  font-size: 0.75rem;
  opacity: 0.7;
}

.store-text strong {
  font-size: 0.95rem;
}

.about-store-badge:hover {
  transform: translateY(-2px);
  background: rgba(7, 19, 29, 1);
}

/* ======================================== */
/* ABOUT PAGE RESPONSIVE                    */
/* ======================================== */
@media (max-width: 1100px) {
  .about-journey-grid,
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-platforms-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-content {
    padding: 56px 40px;
  }
}

@media (max-width: 900px) {
  .about-hero {
    min-height: 400px;
  }

  .about-hero-content {
    padding: 42px 28px;
  }

  .about-hero-title {
    max-width: none;
  }

  .about-app-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .about-journey-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero-content {
    padding: 30px 20px;
  }

  .about-hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .about-hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

.about-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

  .about-hero-actions .btn,
  .about-store-badge {
    width: 100%;
  }

  .about-app-banner {
    padding: 22px 20px;
  }

  .about-app-banner h2 {
    font-size: 1.5rem;
  }
}

/* ======================================== */
/* ABOUT JOURNEY - PREMIUM STYLE            */
/* ======================================== */
.premium-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px;
}

.premium-journey-card {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 29, 45, 0.96), rgba(9, 20, 31, 0.98));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 22px 20px 20px;
  min-height: 235px;
  transition: 0.25s ease;
  overflow: hidden;
}

.premium-journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-color);
}

.premium-journey-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 147, 39, 0.22);
  box-shadow: 0 16px 34px rgba(0,0,0,0.24);
}

.journey-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.journey-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 91, 175, 0.16);
  border: 1px solid rgba(20, 91, 175, 0.24);
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.premium-journey-card .about-journey-year {
  font-size: 0.95rem;
  font-weight: 800;
  color: #9fb7cb;
  margin-bottom: 0;
  white-space: nowrap;
}

.premium-journey-card h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #ffffff;
}

.premium-journey-card p {
  color: #b7c8d8;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ======================================== */
/* ABOUT JOURNEY RESPONSIVE                 */
/* ======================================== */
@media (max-width: 1100px) {
  .premium-journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .premium-journey-grid {
    grid-template-columns: 1fr;
  }

  .premium-journey-card {
    min-height: auto;
    padding: 20px 18px 18px;
  }

  .journey-card-top {
    margin-bottom: 14px;
  }
}

/* ======================================== */
/* ABOUT PLATFORMS - PREMIUM                */
/* ======================================== */
.premium-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.premium-platform-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 22px 20px;
  transition: 0.25s ease;
}

.premium-platform-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 147, 39, 0.22);
}

.platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 91, 175, 0.16);
  border: 1px solid rgba(20, 91, 175, 0.24);
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.premium-platform-box h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.premium-platform-box p {
  color: #b7c8d8;
  margin-bottom: 14px;
  line-height: 1.7;
}

.platform-points {
  display: grid;
  gap: 8px;
}

.platform-points li {
  position: relative;
  padding-left: 16px;
  color: #d6e3ef;
  font-size: 0.94rem;
}

.platform-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-color);
}


/* ======================================== */
/* ABOUT TEAM - PREMIUM                     */
/* ======================================== */
.premium-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.premium-team-card {
  background: transparent;
}

.premium-team-card .about-team-photo {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d1d2d;
  margin-bottom: 0;
}

.premium-team-card .about-team-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.premium-team-card:hover .about-team-photo img {
  transform: scale(1.03);
}

.team-card-body {
  padding: 14px 4px 0;
}

.team-card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.team-role {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.team-card-body p {
  color: #b7c8d8;
  font-size: 0.94rem;
  line-height: 1.7;
}


/* ======================================== */
/* ABOUT SECTION RESPONSIVE EXTENSIONS      */
/* ======================================== */
@media (max-width: 1100px) {
  .premium-platforms-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .premium-team-grid {
    grid-template-columns: 1fr;
  }

  .premium-platform-box,
  .premium-team-card .about-team-photo {
    border-radius: 18px;
  }

  .team-card-body {
    padding-top: 12px;
  }
}


/* ======================================== */
/* BABA TV PAGE                             */
/* ======================================== */
.tv-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}

.tv-hero-copy {
  background: linear-gradient(180deg, rgba(15, 30, 46, 0.95), rgba(10, 22, 34, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tv-hero-compact .tv-hero-copy {
  min-height: 280px;
}

.tv-hero-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 16px;
  max-width: none;
}

.tv-live-section {
  margin-top: 4px;
}

.tv-live-card {
  padding: 22px;
}

.tv-live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tv-live-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(20, 91, 175, 0.16);
  border: 1px solid rgba(20, 91, 175, 0.28);
  color: #d9edff;
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.tv-live-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
}

.tv-live-meta h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.tv-live-meta p {
  color: #b7c8d8;
  max-width: 60ch;
}

/* ======================================== */
/* ABOUT BABA TV                            */
/* ======================================== */
.tv-about-section {
  margin-top: 28px;
}

.tv-about-card {
  padding: 28px;
}

.tv-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.tv-about-copy h2 {
  font-size: 1.8rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.tv-about-copy p {
  color: #b7c8d8;
  line-height: 1.8;
  margin-bottom: 14px;
}

.tv-about-points {
  display: grid;
  gap: 14px;
}

.tv-about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.tv-about-point i {
  color: var(--brand-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.tv-about-point span {
  color: #dce7f3;
  line-height: 1.6;
}

/* ======================================== */
/* TV PAGE GENERAL BLOCKS                   */
/* ======================================== */
.tv-block {
  margin-top: 30px;
}

.tv-section-head {
  margin-bottom: 14px;
}

.tv-schedule-list {
  display: grid;
  gap: 14px;
}

.tv-schedule-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 18px;
  transition: 0.25s ease;
}

.tv-schedule-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 147, 39, 0.22);
}

.tv-schedule-time {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--brand-color);
  white-space: nowrap;
}

.tv-schedule-content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.tv-schedule-content p {
  color: #b7c8d8;
  line-height: 1.7;
}

/* ======================================== */
/* BABA TV RESPONSIVE                       */
/* ======================================== */
@media (max-width: 900px) {
  .tv-hero-copy,
  .tv-live-card,
  .tv-about-card {
    padding: 22px;
  }

  .tv-hero-compact .tv-hero-copy {
    min-height: auto;
  }

  .tv-hero-title {
    max-width: none;
  }

  .tv-about-grid {
    grid-template-columns: 1fr;
  }

  .tv-live-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .tv-schedule-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tv-schedule-time {
    margin-bottom: 2px;
  }
}

@media (max-width: 640px) {
  .tv-hero-copy,
  .tv-live-card,
  .tv-about-card {
    padding: 20px;
  }

  .tv-hero-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 1.06;
  }

  .tv-live-head {
    align-items: flex-start;
  }

  .tv-about-copy h2 {
    font-size: 1.5rem;
  }
}


/* ======================================== */
/* BABA FM PAGE                             */
/* ======================================== */
.fm-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 24px;
}

.fm-hero-copy {
  background: linear-gradient(180deg, rgba(15, 30, 46, 0.95), rgba(10, 22, 34, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  padding: 28px 30px;
}

.fm-hero-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 16px;
  max-width: none;
}

.fm-live-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.fm-player-card,
.fm-next-card,
.fm-about-card {
  padding: 22px;
}

.fm-player-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: stretch;
}

.fm-player-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fm-cover-art {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d1d2d;
  height: 100%;
}

.fm-cover-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fm-now-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 147, 39, 0.14);
  border: 1px solid rgba(255, 147, 39, 0.24);
  color: var(--brand-color);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.fm-now-title {
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.08;
  margin-bottom: 8px;
}

.fm-now-host {
  color: #b7c8d8;
  font-size: 1rem;
  margin-bottom: 18px;
}

.fm-progress-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  color: #9fb2c4;
  font-size: 0.88rem;
}

.fm-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.fm-progress-fill {
  width: 68%;
  height: 100%;
  background: var(--brand-color);
  border-radius: 999px;
}

.fm-audio-wrap {
  margin-bottom: 18px;
}

.fm-audio-player {
  width: 100%;
}

.fm-player-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fm-next-head {
  margin-bottom: 14px;
}

.fm-next-head h3 {
  font-size: 1.35rem;
}

.fm-next-list {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.fm-next-item {
  padding: 0 0 0 14px;
  border-left: 2px solid rgba(255, 147, 39, 0.35);
}

.fm-next-time {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand-color);
  margin-bottom: 4px;
}

.fm-next-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.fm-next-info p {
  color: #b7c8d8;
  font-size: 0.92rem;
}

.fm-full-schedule-btn {
  width: 100%;
}

.fm-about-section {
  margin-top: 28px;
}

.fm-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.fm-about-copy h2 {
  font-size: 1.8rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.fm-about-copy p {
  color: #b7c8d8;
  line-height: 1.8;
  margin-bottom: 14px;
}

.fm-about-points {
  display: grid;
  gap: 14px;
}

.fm-about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.fm-about-point i {
  color: var(--brand-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.fm-about-point span {
  color: #dce7f3;
  line-height: 1.6;
}

.fm-block {
  margin-top: 30px;
}

.fm-section-head {
  margin-bottom: 8px;
}

.fm-schedule-intro {
  margin-bottom: 16px;
}

.fm-schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.fm-day-column {
  display: grid;
  gap: 10px;
}

.fm-day-title {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2436;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-weight: 800;
  color: #dce7f3;
}

.fm-day-title.active {
  background: var(--brand-color);
  color: #0c1620;
}

.fm-slot {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 12px;
}

.fm-slot span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #9fb2c4;
  margin-bottom: 5px;
}

.fm-slot strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

/* ======================================== */
/* BABA FM RESPONSIVE                       */
/* ======================================== */
@media (max-width: 1100px) {
  .fm-live-layout,
  .fm-about-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .fm-player-grid {
    grid-template-columns: 1fr;
  }

  .fm-cover-art {
    max-width: 260px;
  }

  .fm-hero-copy,
  .fm-player-card,
  .fm-next-card,
  .fm-about-card {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .fm-hero-copy,
  .fm-player-card,
  .fm-next-card,
  .fm-about-card {
    padding: 20px;
  }

  .fm-hero-title,
  .fm-now-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
    max-width: none;
  }

  .fm-player-actions .btn {
    width: 100%;
  }

  .fm-schedule-grid {
    grid-template-columns: 1fr;
  }

  .fm-cover-art {
    max-width: 100%;
  }

  .fm-about-copy h2 {
    font-size: 1.5rem;
  }
}


/* ======================================== */
/* CUSTOM AUDIO PLAYER (SoundCloud style)   */
/* ======================================== */
.custom-audio-player {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 60px;
  padding: 8px 16px;
  backdrop-filter: blur(4px);
  margin-top: 8px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.play-pause-btn {
  background: var(--brand-color);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-pause-btn:hover {
  transform: scale(1.05);
  background: #ffa74d;
}

.play-pause-btn i {
  font-size: 1.4rem;
  color: #0c1620;
  margin-left: 2px; /* slight offset for play triangle */
}

.play-pause-btn.paused i {
  margin-left: 0;
}

.progress-container {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 140px;
}

.progress-bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--brand-color);
  border-radius: 10px;
  position: relative;
  transition: width 0.1s linear;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.2s;
}

.progress-bar-bg:hover .progress-fill::after {
  opacity: 1;
}

.time-display {
  font-size: 0.8rem;
  font-family: monospace;
  color: #cbdde9;
  min-width: 70px;
  text-align: center;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 40px;
}

.volume-control i {
  color: #b7c8d8;
  font-size: 1rem;
  cursor: pointer;
}

.volume-slider {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.2);
  border-radius: 5px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-color);
  cursor: pointer;
}

@media (max-width: 640px) {
  .player-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  .progress-container {
    width: 100%;
    order: 1;
  }
  .volume-control {
    order: 2;
  }
}


/* ======================================== */
/* SCHEDULE PAGE                            */
/* ======================================== */
.schedule-hero {
  margin-bottom: 28px;
}

.schedule-hero-copy {
  background: linear-gradient(180deg, rgba(15, 30, 46, 0.95), rgba(10, 22, 34, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  padding: 30px 32px;
}

.schedule-hero-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 16px;
  max-width: none;
}

.schedule-jump-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.schedule-block {
  margin-top: 32px;
}

.schedule-section-head {
  margin-bottom: 8px;
}

.schedule-intro {
  margin-bottom: 16px;
}

.schedule-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.schedule-day-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.schedule-day-title {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2436;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-weight: 800;
  color: #dce7f3;
}

.schedule-day-title.active {
  background: var(--brand-color);
  color: #0c1620;
  height: 46px;
}

.schedule-slot {
  border-radius: 12px;
  padding: 13px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.schedule-slot:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 147, 39, 0.22);
}

.schedule-slot span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.schedule-slot strong {
  display: block;
  font-size: 0.96rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.schedule-slot small {
  display: block;
  font-size: 0.84rem;
  color: #b7c8d8;
}

.tv-slot {
  background: rgba(255,255,255,0.03);
}

.tv-slot span {
  color: var(--brand-color);
}

.fm-slot {
  background: rgba(20, 91, 175, 0.08);
}

.fm-slot span {
  color: var(--accent-color);
}

/* ======================================== */
/* SCHEDULE PAGE RESPONSIVE                 */
/* ======================================== */
@media (max-width: 1100px) {
  .schedule-calendar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .schedule-hero-copy {
    padding: 22px 20px;
  }

  .schedule-hero-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
    max-width: none;
  }

  .schedule-jump-links {
    flex-direction: column;
    align-items: stretch;
  }

  .schedule-jump-links .btn {
    width: 100%;
  }

  .schedule-calendar {
    grid-template-columns: 1fr;
  }
}


/* ======================================== */
/* NEWS PAGE                                */
/* ======================================== */
.news-page-hero {
  margin-bottom: 24px;
}

.news-page-hero-copy {
  background: linear-gradient(180deg, rgba(15, 30, 46, 0.95), rgba(10, 22, 34, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  padding: 28px 30px;
}

.news-page-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 16px;
  max-width: none;
}

.news-categories-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.news-category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0e2031;
  border: 1px solid rgba(255,255,255,0.08);
  color: #dce7f3;
  font-weight: 700;
  transition: 0.25s ease;
}

.news-category-chip:hover,
.news-category-chip.active {
  background: rgba(255, 147, 39, 0.14);
  border-color: rgba(255, 147, 39, 0.28);
  color: #ffffff;
}

.news-page-block {
  margin-top: 32px;
}

.news-page-section-head {
  margin-bottom: 14px;
}

.news-featured-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  background: linear-gradient(180deg, rgba(15, 30, 46, 0.95), rgba(10, 22, 34, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.news-featured-content {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-featured-content h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.news-featured-content p {
  color: #b7c8d8;
  line-height: 1.8;
  margin-bottom: 22px;
}

.news-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #9fb2c4;
  font-size: 0.92rem;
}

/* ======================================== */
/* NEWS PAGE RESPONSIVE                     */
/* ======================================== */
@media (max-width: 1100px) {
  .news-featured-story {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .news-page-hero-copy,
  .news-featured-content {
    padding: 22px 20px;
  }

  .news-page-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
    max-width: none;
  }

  .news-list-grid {
    grid-template-columns: 1fr;
  }

  .news-featured-meta .btn {
    width: 100%;
  }
}


/* ======================================== */
/* SINGLE ARTICLE                           */
/* ======================================== */
.article-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.72fr);
  gap: 26px;
  align-items: start;
}

.article-main-column {
  min-width: 0;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #9bb0c2;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.article-breadcrumb a:hover {
  color: #ffffff;
}

.article-header {
  margin-bottom: 22px;
}

.article-title {
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 15ch;
}

.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.article-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 147, 39, 0.14);
  border: 1px solid rgba(255, 147, 39, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-color);
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.article-author-block strong {
  display: block;
  font-size: 0.96rem;
  color: #ffffff;
}

.article-author-block span {
  display: block;
  font-size: 0.82rem;
  color: #9bb0c2;
}

.article-meta-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #9bb0c2;
  font-size: 0.88rem;
}

.article-meta-inline span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-featured-media {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d1d2d;
  margin-bottom: 24px;
}

.article-featured-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-featured-media figcaption {
  padding: 10px 14px;
  font-size: 0.8rem;
  color: #8fa5b8;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.article-content-wrap {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.article-share-rail {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 118px;
}

.article-share-rail a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dce7f3;
  transition: 0.25s ease;
}

.article-share-rail a:hover {
  background: rgba(255, 147, 39, 0.14);
  border-color: rgba(255, 147, 39, 0.24);
  color: var(--brand-color);
}

.article-body {
  color: #dce7f3;
}

.article-body p {
  font-size: 1.04rem;
  line-height: 1.95;
  color: #c9d7e4;
  margin-bottom: 18px;
}

.article-lead {
  font-size: 1.18rem !important;
  line-height: 1.9 !important;
  color: #ffffff !important;
}

.article-body h2 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 30px 0 14px;
  color: #ffffff;
}

.article-highlight-box {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--accent-color);
  background: rgba(20, 91, 175, 0.08);
  border-radius: 0 16px 16px 0;
}

.article-highlight-box h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.article-highlight-box ul {
  display: grid;
  gap: 10px;
}

.article-highlight-box li {
  position: relative;
  padding-left: 16px;
  color: #dce7f3;
}

.article-highlight-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-color);
}

.article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.article-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #a9bdd0;
  font-size: 0.82rem;
  font-weight: 700;
}

.article-sidebar-column {
  display: grid;
  gap: 18px;
}

.article-sidebar-card {
  background: linear-gradient(180deg, rgba(15, 30, 46, 0.95), rgba(10, 22, 34, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.article-sidebar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.article-sidebar-text {
  color: #b7c8d8;
  margin-bottom: 14px;
}

.article-promo-card {
  background: linear-gradient(135deg, rgba(255,147,39,0.18), rgba(255,147,39,0.82));
  border-color: rgba(255, 147, 39, 0.22);
}

.article-sidebar-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff4ea;
}

.article-promo-card h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.article-promo-card p {
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
  line-height: 1.7;
}

.article-promo-card .btn {
  background: #ffffff;
  color: #0c1620;
}

.article-related-news-list {
  display: grid;
  gap: 14px;
}

.article-related-news-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: start;
}

.article-related-news-item img {
  width: 100%;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.article-related-news-item h4 {
  font-size: 0.95rem;
  line-height: 1.35;
  margin-top: 6px;
  color: #ffffff;
}

/* ======================================== */
/* SINGLE ARTICLE RESPONSIVE                */
/* ======================================== */
@media (max-width: 1100px) {
  .article-page-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .article-content-wrap {
    grid-template-columns: 1fr;
  }

  .article-share-rail {
    position: static;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
}

@media (max-width: 640px) {
  .article-title {
    font-size: clamp(2rem, 9vw, 3.1rem);
    max-width: none;
  }

  .article-sidebar-card {
    padding: 18px;
  }

  .article-related-news-item {
    grid-template-columns: 72px 1fr;
  }

  .article-featured-media {
    border-radius: 18px;
  }

  .article-body p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .article-body h2 {
    font-size: 1.35rem;
  }
}


/* ======================================== */
/* CONTACT PAGE                             */
/* ======================================== */
.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(6,16,26,0.82) 0%, rgba(6,16,26,0.58) 45%, rgba(6,16,26,0.72) 100%),
    url('/admin/public/uploads/images/2026/04/20260405152645_73c00231f3c50f87.jpg') center center / cover no-repeat;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  margin-bottom: 28px;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.16));
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}

.contact-hero-title {
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 14px;
}

.contact-hero-text {
  max-width: none;
  color: #d8e3ee;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.95fr);
  gap: 26px;
  align-items: start;
}

.contact-form-card {
  padding: 28px;
}

.contact-form-card h2 {
  font-size: 1.9rem;
  margin-bottom: 22px;
}

.contact-select {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b1a29;
  color: #ffffff;
  outline: none;
}

.contact-submit-btn {
  min-width: 170px;
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.contact-info-card {
  padding: 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 91, 175, 0.16);
  border: 1px solid rgba(20, 91, 175, 0.24);
  color: var(--accent-color);
  font-size: 1.15rem;
}

.contact-info-card h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.contact-info-card p {
  color: #c6d4e1;
  line-height: 1.75;
}

.contact-social-card {
  padding: 22px 20px;
  text-align: center;
}

.contact-social-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  transition: 0.25s ease;
}

.contact-social-links a:hover {
  background: rgba(255, 147, 39, 0.14);
  border-color: rgba(255, 147, 39, 0.24);
  color: var(--brand-color);
}

/* ======================================== */
/* CONTACT PAGE RESPONSIVE                  */
/* ======================================== */
@media (max-width: 1100px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    min-height: auto;
  }

  .contact-hero-content {
    min-height: auto;
    padding: 30px 20px;
  }

  .contact-hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .contact-hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .contact-form-card,
  .contact-info-card,
  .contact-social-card {
    padding: 20px;
  }

  .contact-form-card h2 {
    font-size: 1.6rem;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .contact-info-card {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .contact-info-icon {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
}


/* ======================================== */
/* BUSOGA PAGE                              */
/* ======================================== */
.busoga-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(6,16,26,0.78) 0%, rgba(6,16,26,0.45) 46%, rgba(6,16,26,0.68) 100%),
    url('/admin/public/uploads/images/2026/04/20260406182741_70a03c0fa0f2f810.jpg') center center / cover no-repeat;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  margin-bottom: 22px;
}

.busoga-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.14));
}

.busoga-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 64px 42px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.busoga-kicker {
  display: inline-flex;
  align-self: center;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 147, 39, 0.14);
  border: 1px solid rgba(255, 147, 39, 0.24);
  color: var(--brand-color);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.busoga-hero-title {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 16px;
}

.busoga-hero-text {
  max-width: 58ch;
  margin: 0 auto 24px;
  color: #d7e2ec;
  line-height: 1.8;
}

.busoga-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.busoga-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.busoga-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
}

.busoga-stat-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--brand-color);
  margin-bottom: 6px;
}

.busoga-stat-card span {
  color: #c3d2df;
  font-size: 0.95rem;
  font-weight: 700;
}

.busoga-block {
  margin-top: 34px;
}

.busoga-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.busoga-story-card {
  height: stretch;
}

.busoga-story-card,
.busoga-image-card,
.busoga-royal-copy {
  padding: 28px;
}

.busoga-story-card h2 {
  font-size: 2rem;
  line-height: 1.08;
  margin-bottom: 16px;
}

.busoga-timeline {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.busoga-timeline-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
}

.busoga-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-color);
  margin-top: 7px;
  box-shadow: 0 0 0 5px rgba(255,147,39,0.08);
}

.busoga-timeline-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.busoga-timeline-item p {
  color: #b7c8d8;
  line-height: 1.75;
}

.busoga-image-card {
  overflow: hidden;
}

.busoga-image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 14px;
}

.busoga-image-caption {
  color: #c9d7e4;
  font-size: 0.95rem;
  line-height: 1.7;
}

.busoga-section-head {
  margin-bottom: 16px;
}

.busoga-royal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.busoga-royal-photo-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d1d2d;
}

.busoga-royal-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.busoga-royal-photo-meta {
  padding: 16px 18px;
}

.busoga-royal-photo-meta h3 {
  font-size: 1.12rem;
  margin-bottom: 4px;
}

.busoga-royal-photo-meta p {
  color: #9fb2c4;
}

.busoga-royal-copy h2 {
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.busoga-royal-copy p {
  color: #b7c8d8;
  line-height: 1.8;
  margin-bottom: 14px;
}

.busoga-royal-highlights {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}

.busoga-royal-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.busoga-royal-point i {
  color: var(--brand-color);
  margin-top: 2px;
}

.busoga-sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.busoga-site-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d1d2d;
  transition: 0.25s ease;
}

.busoga-site-card:hover {
  transform: translateY(-4px);
}

.busoga-site-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.busoga-site-body {
  padding: 18px;
}

.busoga-site-body h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.busoga-site-body p {
  color: #b7c8d8;
  line-height: 1.7;
}

.busoga-media-hub {
  margin-top: 38px;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(57,36,20,0.95), rgba(40,27,17,0.96));
  border: 1px solid rgba(255,255,255,0.06);
}

.busoga-media-copy {
  text-align: center;
  margin-bottom: 22px;
}

.busoga-media-copy h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.busoga-media-copy p {
  color: #dbcfc7;
  max-width: 60ch;
  margin: 0 auto;
}

.busoga-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 18px;
}

.busoga-media-feature {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.busoga-media-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.busoga-media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78));
}

.busoga-media-overlay h3 {
  font-size: 1.2rem;
  margin: 8px 0 6px;
}

.busoga-media-overlay p {
  color: #d8e3ee;
}

.busoga-media-list {
  display: grid;
  gap: 12px;
}

.busoga-media-mini {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 700;
}

.busoga-newsletter {
  margin-top: 38px;
}

.busoga-newsletter-box {
  padding: 36px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.busoga-newsletter-box h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.busoga-newsletter-box p {
  max-width: 58ch;
  margin: 0 auto 20px;
  color: #c8d6e3;
}

.busoga-newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.busoga-newsletter-form input {
  width: min(360px, 100%);
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b1a29;
  color: #ffffff;
  outline: none;
}

/* ======================================== */
/* BUSOGA RESPONSIVE                        */
/* ======================================== */
@media (max-width: 1100px) {
  .busoga-stats-grid,
  .busoga-sites-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .busoga-story-grid,
  .busoga-royal-grid,
  .busoga-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .busoga-hero {
    min-height: 380px;
  }

  .busoga-hero-content {
    min-height: 380px;
    padding: 42px 24px;
  }
}

@media (max-width: 640px) {
  .busoga-stats-grid,
  .busoga-sites-grid {
    grid-template-columns: 1fr;
  }

  .busoga-hero {
    min-height: auto;
  }

  .busoga-hero-content {
    min-height: auto;
    padding: 30px 18px;
  }

  .busoga-hero-title {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .busoga-hero-actions,
  .busoga-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .busoga-hero-actions .btn,
  .busoga-newsletter-form .btn {
    width: 100%;
  }

  .busoga-media-hub,
  .busoga-newsletter-box,
  .busoga-story-card,
  .busoga-image-card,
  .busoga-royal-copy {
    padding: 22px 18px;
  }

  .busoga-media-copy h2,
  .busoga-newsletter-box h2,
  .busoga-story-card h2,
  .busoga-royal-copy h2 {
    font-size: 1.55rem;
  }
}


/* ======================================== */
/* LEGAL / SUPPORT PAGES                    */
/* ======================================== */
.legal-page-hero {
  margin-bottom: 28px;
}

.legal-page-hero-copy {
  background: linear-gradient(180deg, rgba(15, 30, 46, 0.95), rgba(10, 22, 34, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  padding: 30px 32px;
}

.legal-page-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 16px;
  max-width: none;
}

.legal-page-layout {
  display: grid;
  gap: 20px;
}

.legal-content-card {
  padding: 26px 28px;
}

.legal-content-card h2 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.legal-content-card p {
  color: #c9d7e4;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content-card p:last-child {
  margin-bottom: 0;
}

/* ======================================== */
/* LEGAL / SUPPORT RESPONSIVE               */
/* ======================================== */
@media (max-width: 640px) {
  .legal-page-hero-copy,
  .legal-content-card {
    padding: 22px 20px;
  }

  .legal-page-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
    max-width: none;
  }

  .legal-content-card h2 {
    font-size: 1.28rem;
  }

  .legal-content-card p {
    line-height: 1.8;
  }
}

.player-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  z-index: 10;
}
