/* ========================================================
   SBL WEB 2.0 - MAIN STYLESHEET (BROADCAST GRADE & ULTRA-RESPONSIVE)
   LPPL Radio Suara Bumi Lasinrang 92.4 FM
   Kabupaten Pinrang, Sulawesi Selatan
   ======================================================== */

:root {
  /* Palet Warna Baku LPPL Radio SBL */
  --primary: #0284c7;         /* Sky Blue Radio SBL */
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --accent-gold: #f59e0b;     /* Gold Lasinrang */
  --accent-red: #ef4444;      /* On-Air Live Red */
  --spotify-green: #1db954;
  --youtube-red: #ef4444;
  
  /* Tema Terang (Light Mode Default) */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  
  /* Shadows & Radii */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg-main: #0b0f19;
  --bg-surface: #111827;
  --bg-card: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --primary-light: #0c4a6e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Accessibility Offscreen Skip Link */
.screen-reader-text, .skip-link:not(:focus) {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link:focus, .screen-reader-text:focus {
  top: 10px !important;
  left: 10px !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  background: var(--primary) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  z-index: 99999 !important;
  text-decoration: none !important;
  box-shadow: var(--shadow-lg) !important;
}

/* ========================================================
   TOPBAR BROADCAST IDENTIFIER
======================================================== */
.topbar {
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ef4444;
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* ========================================================
   MAIN NAVBAR & BRAND HEADER
======================================================== */
.navbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}
.brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}
.brand-logo {
  height: 44px;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  flex-shrink: 0;
}
.brand-meta {
  min-width: 0;
}
.brand-meta h1 {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-meta p {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li a, .nav-item {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  padding: 6px 4px;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
.nav-menu li a:hover, .nav-menu li.current-menu-item a, .nav-item:hover, .nav-item.active {
  color: var(--primary);
}
.nav-menu li.current-menu-item a::after, .nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: var(--radius-full);
}
.nav-item-cta, .nav-menu li:last-child a {
  background: #10b981;
  color: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-full);
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.nav-item-cta:hover, .nav-menu li:last-child a:hover {
  background: #059669;
  transform: translateY(-1px);
}
.nav-highlight {
  color: #10b981 !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.mobile-toggle {
  display: none !important;
}
@media (max-width: 992px) {
  .mobile-toggle {
    display: inline-flex !important;
  }
}
@media (min-width: 993px) {
  .nav-links {
    display: flex !important;
    align-items: center;
    margin-left: auto;
  }
  .nav-menu {
    display: flex !important;
    align-items: center;
  }
  .mobile-toggle {
    display: none !important;
  }
}
.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.nav-icon-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}
.mobile-only {
  display: none;
}

/* ========================================================
   LIVE STREAMING PLAYER DOCK BAR
======================================================== */
.live-player-bar {
  background: linear-gradient(135deg, #075985 0%, #0369a1 50%, #0284c7 100%);
  color: #fff;
  padding: 12px 0;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.3);
}
.player-grid-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.player-main-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 240px;
}
.play-trigger-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #0369a1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.play-trigger-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.now-airing-meta {
  min-width: 0;
}
.now-airing-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.audio-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}
.spec-bar {
  width: 3px;
  height: 100%;
  background: #38bdf8;
  border-radius: 2px;
  animation: equalize 1s infinite alternate ease-in-out;
}
.spec-bar:nth-child(1) { animation-duration: 0.6s; }
.spec-bar:nth-child(2) { animation-duration: 0.8s; }
.spec-bar:nth-child(3) { animation-duration: 0.5s; }
.spec-bar:nth-child(4) { animation-duration: 0.9s; }
.spec-bar:nth-child(5) { animation-duration: 0.7s; }
@keyframes equalize {
  0%   { height: 20%; }
  100% { height: 100%; }
}
.now-airing-desc {
  font-size: 0.78rem;
  color: #bae6fd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 550px;
}

.player-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.25);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
.volume-control input[type="range"] {
  width: 80px;
  accent-color: #38bdf8;
  cursor: pointer;
}
.btn-popup-player {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-popup-player:hover {
  background: #ffffff;
  color: #0369a1;
}

/* ========================================================
   BREAKING NEWS TICKER (SINGLE-LINE CONTINUOUS MARQUEE)
======================================================= */
.news-ticker-section {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  overflow: hidden;
}
.ticker-container {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}
.ticker-title-tag {
  background: #ef4444;
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.76rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 2px 0 8px rgba(0,0,0,0.12);
}
.ticker-marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  min-width: 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-scroll 40s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  transition: color 0.2s ease;
  display: inline-block;
  white-space: nowrap;
}
.ticker-item:hover {
  color: var(--primary);
}
.ticker-sep {
  color: var(--accent-gold);
  margin: 0 14px;
  font-size: 0.85rem;
}

/* ========================================================
   HERO RADIO STAGE & HEADLINE NEWS (ANIMATED BROADCAST SUITE)
======================================================== */
.radio-hero-section {
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.sbl-hero-animated-bg {
  position: relative;
  background: radial-gradient(circle at 20% 30%, rgba(2, 132, 199, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

[data-theme="dark"] .sbl-hero-animated-bg {
  background: radial-gradient(circle at 20% 30%, rgba(2, 132, 199, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.14) 0%, transparent 60%);
}

.sbl-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
  animation: sbl-mesh-float 12s ease-in-out infinite alternate;
}

.sbl-hero-glow--1 {
  width: 320px;
  height: 320px;
  background: rgba(2, 132, 199, 0.25);
  top: -50px;
  left: 5%;
  animation-duration: 10s;
}

.sbl-hero-glow--2 {
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.2);
  bottom: -40px;
  right: 8%;
  animation-duration: 14s;
  animation-delay: -3s;
}

.sbl-hero-glow--3 {
  width: 240px;
  height: 240px;
  background: rgba(239, 68, 68, 0.18);
  top: 40%;
  left: 45%;
  animation-duration: 16s;
  animation-delay: -6s;
}

@keyframes sbl-mesh-float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.12); }
  100% { transform: translate(-20px, 25px) scale(0.92); }
}

.hero-stage-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}

/* ========================================================
   SBL RADIO PLAYER HERO BANNER (ULTRA MODERN GLASSMORPHISM)
======================================================== */
.sbl-player-banner {
  background: linear-gradient(135deg, #003d99 0%, #005ce6 55%, #0284c7 100%);
  border-radius: 24px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px -6px rgba(0, 92, 230, 0.42), 0 8px 12px -6px rgba(0, 92, 230, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sbl-player-banner__cover-box {
  background: #ffffff;
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 18px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.sbl-cover-pulse {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  animation: sbl-cover-ring 2s infinite;
  pointer-events: none;
}

@keyframes sbl-cover-ring {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.sbl-player-banner__cover-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.sbl-player-banner__content {
  flex: 1;
  min-width: 0;
  z-index: 2;
}

.sbl-player-banner__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.sbl-badge-onair {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}

.sbl-pulse-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: sbl-pulse-badge 1.2s infinite;
}

.sbl-player-banner__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sbl-player-banner__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.84rem;
  color: #e0f2fe;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.sbl-player-banner__status {
  font-size: 0.78rem;
  color: #bae6fd;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sbl-player-banner__wave-bg {
  position: absolute;
  top: 50%;
  left: 28%;
  right: 18%;
  transform: translateY(-50%);
  height: 64px;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}

.sbl-wave-svg {
  width: 100%;
  height: 100%;
}

.wave-path--1 {
  animation: sbl-wave-slide 8s linear infinite;
}
.wave-path--2 {
  animation: sbl-wave-slide 6s linear infinite reverse;
}
.wave-path--3 {
  animation: sbl-wave-slide 10s linear infinite;
}

@keyframes sbl-wave-slide {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 500; }
}

.sbl-player-banner__action {
  z-index: 2;
  flex-shrink: 0;
}

.sbl-player-banner__play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #005ce6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  padding: 0;
}

.sbl-player-banner__play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

.sbl-player-banner__play-btn:active {
  transform: scale(0.95);
}

.sbl-player-banner__play-btn .sbl-play-icon {
  font-size: 1.45rem;
  margin-left: 3px;
}

/* ========================================================
   BOTTOM FLOATING RADIO PLAYER DOCK (DISEMBUNYIKAN SESUAI PERMINTAAN)
======================================================== */

.sbl-bottom-player-dock,
#sbl-floating-player,
#sbl-mini-player-badge {
  display: none !important;
}

.article-play-btn {
  width: auto !important;
  height: auto !important;
  border-radius: 9999px !important;
  padding: 10px 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

.article-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35) !important;
}

.sbl-bottom-player-dock {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1020px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 9980;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

[data-theme="dark"] .sbl-bottom-player-dock {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.sbl-bottom-player-dock.dock-hidden {
  transform: translateX(-50%) translateY(140%);
  opacity: 0;
  pointer-events: none;
}

.sbl-bottom-dock__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.sbl-bottom-dock__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #ffffff;
}

.sbl-bottom-dock__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.sbl-bottom-dock__title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.sbl-dock-live-tag {
  font-size: 0.72rem;
  font-weight: 900;
  color: #0070f3;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.sbl-bottom-dock__title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0070f3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="dark"] .sbl-bottom-dock__title {
  color: #38bdf8;
}

.sbl-bottom-dock__artist {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="dark"] .sbl-bottom-dock__artist {
  color: #94a3b8;
}

.sbl-bottom-dock__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.sbl-bottom-dock__play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0070f3;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.4);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  padding: 0;
}

.sbl-bottom-dock__play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 112, 243, 0.6);
}

.sbl-bottom-dock__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.sbl-bottom-dock__bar {
  width: 3px;
  height: 100%;
  background: #0070f3;
  border-radius: 2px;
  animation: equalize 1s infinite alternate ease-in-out;
  animation-play-state: paused;
}

.sbl-bottom-dock__bars.playing .sbl-bottom-dock__bar,
.sbl-bottom-dock__bars.active .sbl-bottom-dock__bar {
  animation-play-state: running;
}

.sbl-bottom-dock__bar:nth-child(1) { animation-duration: 0.6s; }
.sbl-bottom-dock__bar:nth-child(2) { animation-duration: 0.8s; }
.sbl-bottom-dock__bar:nth-child(3) { animation-duration: 0.5s; }
.sbl-bottom-dock__bar:nth-child(4) { animation-duration: 0.9s; }
.sbl-bottom-dock__bar:nth-child(5) { animation-duration: 0.7s; }

.sbl-bottom-dock__popout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0070f3;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

[data-theme="dark"] .sbl-bottom-dock__popout {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #38bdf8;
}

.sbl-bottom-dock__popout:hover {
  background: #e2e8f0;
  transform: scale(1.05);
}

.sbl-bottom-dock__vol {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sbl-vol-label {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 700;
  line-height: 1;
}

[data-theme="dark"] .sbl-vol-label {
  color: #94a3b8;
}

.sbl-bottom-dock__vol input[type="range"] {
  width: 90px;
  accent-color: #0070f3;
  cursor: pointer;
  height: 4px;
}

.sbl-dock-toggle-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}

.sbl-dock-toggle-btn:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

/* Mini Player Badge Floating Trigger */
.sbl-mini-player-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9985;
  background: #0070f3;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 0.84rem;
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
}

.sbl-mini-player-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 112, 243, 0.6);
}

@media (max-width: 768px) {
  .sbl-bottom-player-dock {
    border-radius: 20px;
    padding: 8px 14px;
    bottom: 12px;
    width: calc(100% - 24px);
    gap: 10px;
  }
  .sbl-bottom-dock__vol,
  .sbl-bottom-dock__popout {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-stage-grid {
    grid-template-columns: 1fr !important;
  }
  .sbl-player-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }
  .sbl-player-banner__action {
    align-self: flex-end;
  }
  .sbl-player-banner__wave-bg {
    display: none;
  }
  .sbl-bottom-player-dock {
    width: calc(100% - 16px);
    bottom: 8px;
    padding: 8px 14px;
  }
  .sbl-bottom-dock__vol,
  .sbl-bottom-dock__bars {
    display: none;
  }
}
.btn-listen-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
}
.btn-hero-wa {
  background: #10b981;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transition: var(--transition);
}
.btn-hero-wa:hover {
  transform: translateY(-2px);
  background: #059669;
}

/* Headline News Card */
.headline-news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-decoration: none;
}
.headline-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 10, 19, 0.95) 100%);
}
.headline-body {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #fff;
}
.news-tag {
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.headline-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.headline-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: #94a3b8;
}

/* ========================================================
   RADIO FEATURES: JADWAL & TANGGA LAGU
======================================================== */
.radio-features-section {
  padding: 16px 0 32px;
}
.radio-features-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}
.feature-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.schedule-days-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  max-width: 100%;
}
.schedule-days-tabs::-webkit-scrollbar {
  height: 3px;
}
.schedule-days-tabs::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
.day-tab {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.day-tab:hover, .day-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  gap: 12px;
  transition: var(--transition);
}
.schedule-item:hover {
  border-color: var(--primary);
  transform: translateX(3px);
}
.schedule-time {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}
.schedule-info {
  flex: 1;
  min-width: 0;
}
.schedule-info h4 {
  font-size: 0.92rem;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.schedule-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.schedule-genre {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-main);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Tangga Lagu (Top Hits Spotify) */
.chart-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  gap: 12px;
  transition: var(--transition);
}
.chart-item:hover {
  border-color: #10b981;
  transform: translateX(3px);
}
.chart-rank {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.chart-info {
  flex: 1;
  min-width: 0;
}
.chart-info h4 {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.chart-info p {
  font-size: 0.76rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-req-song {
  background: #10b981;
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-req-song:hover {
  background: #059669;
}

/* ========================================================
   MULTIMEDIA HUB: SPOTIFY EPISODES & YOUTUBE CAROUSEL
======================================================== */
.podcast-player-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.podcast-tag-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.pod-badge {
  background: #10b981;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}

.spotify-episodes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
  margin-top: 10px;
}
.spotify-episodes-list::-webkit-scrollbar {
  width: 4px;
}
.spotify-episodes-list::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
.spotify-ep-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-main);
}
.spotify-ep-item:hover, .spotify-ep-item.active {
  background: rgba(29, 185, 84, 0.1);
  border-color: #1db954;
  transform: translateX(3px);
}
.spotify-ep-play-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1db954;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.spotify-ep-info {
  flex: 1;
  min-width: 0;
}
.spotify-ep-info h5 {
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.spotify-ep-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.youtube-carousel-wrap {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 2px;
  -webkit-overflow-scrolling: touch;
}
.youtube-carousel-wrap::-webkit-scrollbar {
  height: 4px;
}
.youtube-carousel-wrap::-webkit-scrollbar-thumb {
  background: rgba(239, 68, 68, 0.4);
  border-radius: 4px;
}
.youtube-thumb-item {
  flex: 0 0 110px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--bg-surface);
}
.youtube-thumb-item:hover, .youtube-thumb-item.active {
  border-color: #ef4444;
  transform: scale(1.03);
}
.youtube-thumb-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.youtube-thumb-item span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================================================
   WARTA & INFORMASI BUMI LASINRANG
======================================================== */
.warta-section {
  padding: 16px 0 40px;
}
.warta-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
.warta-tabs::-webkit-scrollbar {
  height: 3px;
}
.warta-tabs::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
.warta-tab-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.warta-tab-btn:hover, .warta-tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.news-grid, .news-balanced-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .news-grid, .news-balanced-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .news-grid, .news-balanced-grid {
    grid-template-columns: 1fr;
  }
}

.news-card, .news-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.news-card:hover, .news-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.news-card-thumb, .news-item-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 190px;
  background-size: cover;
  background-position: center;
  background-color: #0f172a;
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.news-card-thumb img, .news-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-card:hover .news-card-thumb img, .news-item-card:hover .news-item-thumb img {
  transform: scale(1.05);
}

.card-cat-badge, .news-item-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 2;
}

.news-card-body, .news-item-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-title, .news-item-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
}
.news-card-title a, .news-item-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}
.news-card-title a:hover, .news-item-title a:hover {
  color: var(--primary);
}

.news-card-excerpt, .news-item-excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.news-card-footer, .news-item-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-top: auto;
}

.btn-more-news {
  display: inline-block;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.86rem;
  text-decoration: none;
  transition: var(--transition);
}
.btn-more-news:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ========================================================
   FOOTER RESMI
======================================================== */
.radio-footer, .site-footer {
  background: #0b0f19;
  color: #94a3b8;
  padding: 44px 0 20px;
  border-top: 2px solid var(--primary);
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
}
.footer-desc h3, .footer-brand-col h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.footer-desc p, .footer-brand-col p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-gov-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}
.footer-gov-logos img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.footer-nav-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.footer-nav-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}
.footer-nav-list a:hover {
  color: #38bdf8;
  padding-left: 3px;
}
.footer-address-box p {
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-bottom-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ========================================================
   RESPONSIVE MEDIA QUERIES (SEMPURNA DI SEMUA LAYAR)
======================================================== */
@media (max-width: 992px) {
  .hero-stage-grid        { grid-template-columns: 1fr; }
  .radio-features-grid    { grid-template-columns: 1fr; }
  .news-balanced-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-main-grid       { grid-template-columns: repeat(2, 1fr); }
  #podcast-sbl > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--primary);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 12px 20px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    z-index: 200;
  }
  .nav-menu.nav-open {
    display: flex;
  }
  .nav-item {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    width: 100%;
  }
  .nav-item:last-child {
    border-bottom: none;
  }

  .topbar-flex {
    flex-direction: row;
    justify-content: space-between;
    font-size: 0.72rem;
    gap: 4px;
  }
  .topbar-left span:nth-child(2) {
    display: none; /* Sembunyikan alamat panjang di mobile */
  }

  .player-grid-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .player-tools {
    justify-content: space-between;
    width: 100%;
  }
  .volume-control {
    flex: 1;
  }

  .news-balanced-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-bottom-strip {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .navbar-inner {
    padding: 8px 0;
    gap: 8px;
  }
  .brand-logo {
    height: 36px;
    max-height: 36px;
  }
  .brand-meta h1 {
    font-size: 0.88rem;
    white-space: normal;
    line-height: 1.15;
  }
  .brand-meta p {
    font-size: 0.58rem;
    white-space: normal;
    line-height: 1.15;
  }
  .nav-actions {
    gap: 4px;
  }
  .nav-icon-btn {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
  }
  .topbar {
    font-size: 0.70rem;
    padding: 4px 0;
  }
  .topbar-flex {
    flex-wrap: wrap;
    gap: 4px;
  }
  .live-pill {
    padding: 1px 6px;
    font-size: 0.65rem;
  }
  .studio-onair-card {
    padding: 16px 14px;
    min-height: 320px;
  }
  .studio-stage-content h2 {
    font-size: 1.25rem;
  }
  .studio-btn-group {
    flex-direction: column;
    gap: 8px;
  }
  .btn-listen-hero, .btn-hero-wa {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 0.82rem;
  }
  .headline-news-card {
    min-height: 280px;
  }
  .headline-body {
    padding: 14px;
  }
  .headline-title {
    font-size: 1.05rem;
  }
  .feature-box {
    padding: 16px 12px;
  }
  .btn-req-song {
    padding: 4px 8px;
    font-size: 0.70rem;
  }
}

/* Lightbox Modal */
.sbl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.sbl-lightbox .lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 19, 0.92);
}
.sbl-lightbox .lightbox-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 90vh;
}
.sbl-lightbox img {
  max-width: 85vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-prev { left: -54px; }
.lightbox-next { right: -54px; }

/* Search Modal */
#search-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 19, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
#search-modal.active {
  display: flex;
}
.search-modal-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 550px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.search-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.search-modal-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary);
  background: var(--bg-surface);
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
}
.search-close-btn {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: var(--text-muted);
  cursor: pointer;
}


/* Strict Logo Constraints */
.brand-logo, .brand-logo-rebrand {
  height: 44px !important;
  max-height: 44px !important;
  width: auto !important;
  max-width: 48px !important;
  object-fit: contain !important;
  display: inline-block !important;
}
.brand-area a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* ========================================================
   SBL DESIGN SYSTEM — UNIVERSAL UI UTILITIES & COMPONENTS
   LPPL Radio Suara Bumi Lasinrang 92.4 FM
======================================================== */

/* Design Tokens Aliases */
:root {
  --sbl-sky-50: #f0f9ff;
  --sbl-sky-100: #e0f2fe;
  --sbl-sky-200: #bae6fd;
  --sbl-sky-300: #7dd3fc;
  --sbl-sky-400: #38bdf8;
  --sbl-sky-500: #0ea5e9;
  --sbl-sky-600: #0284c7;
  --sbl-sky-700: #0369a1;
  --sbl-sky-800: #075985;
  --sbl-sky-900: #0c4a6e;
  --sbl-navy-900: #0a1120;
  --sbl-navy-800: #0f172a;
  --sbl-navy-700: #1e293b;
  --sbl-gray-100: #f1f5f9;
  --sbl-gray-200: #e2e8f0;
  --sbl-gray-300: #cbd5e1;
  --sbl-gray-400: #94a3b8;
  --sbl-gray-500: #64748b;
  
  --sbl-space-1: 4px;
  --sbl-space-2: 8px;
  --sbl-space-3: 12px;
  --sbl-space-4: 16px;
  --sbl-space-5: 20px;
  --sbl-space-6: 24px;
  --sbl-space-8: 32px;
  --sbl-space-10: 40px;
  --sbl-space-12: 48px;

  --sbl-radius-sm: 8px;
  --sbl-radius-md: 12px;
  --sbl-radius-lg: 18px;
  --sbl-radius-xl: 24px;
  --sbl-radius-full: 9999px;

  --sbl-color-text-main: var(--text-main);
  --sbl-color-text-muted: var(--text-muted);
  --sbl-color-accent: #0284c7;
  --sbl-text-4xl: clamp(1.85rem, 4vw, 2.4rem);
}

/* Layout Utilities */
.sbl-container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}
.sbl-container--narrow {
  max-width: 820px;
}
.sbl-section {
  padding-top: 40px;
  padding-bottom: 64px;
}

.sbl-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.sbl-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.sbl-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Cards & Elevation */
.sbl-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sbl-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.35);
}

/* Badges */
.sbl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sbl-badge--category {
  background: var(--primary-light);
  color: var(--primary-dark);
}
[data-theme="dark"] .sbl-badge--category {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
}
.sbl-badge--live {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Buttons */
.sbl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.sbl-btn--primary {
  background: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}
.sbl-btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}
.sbl-btn--whatsapp {
  background: #10b981;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.sbl-btn--whatsapp:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}
.sbl-btn--ghost {
  background: var(--bg-surface);
  color: var(--text-main) !important;
  border: 1px solid var(--border-color);
}
.sbl-btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: var(--primary-light);
}
.sbl-btn--full {
  width: 100%;
}

/* ========================================================
   KOMPONEN 1: JADWAL SIARAN SEPEKAN
======================================================== */
.sbl-schedule {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.sbl-schedule__header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.sbl-schedule__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sbl-schedule__tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
  scrollbar-width: thin;
}
.sbl-schedule__tab {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.sbl-schedule__tab:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.sbl-schedule__tab.active,
.sbl-schedule__tab[aria-selected="true"] {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}
.sbl-schedule__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sbl-schedule-item {
  display: grid;
  grid-template-columns: 130px 1.5fr 2fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.sbl-schedule-item:hover {
  border-color: rgba(2, 132, 199, 0.4);
  transform: translateX(4px);
}
.sbl-schedule-item--active {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.08) 0%, rgba(14, 165, 233, 0.04) 100%);
  border: 1.5px solid var(--primary);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.15);
}
.sbl-schedule-item__time {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  white-space: nowrap;
}
[data-theme="dark"] .sbl-schedule-item__time {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
}
.sbl-schedule-item__program {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-main);
}
.sbl-schedule-item__announcer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.sbl-schedule-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.sbl-schedule-item__onair {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: sbl-pulse-badge 1.5s infinite;
}

@media (max-width: 768px) {
  .sbl-schedule-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }
  .sbl-schedule-item__time {
    display: inline-block;
    align-self: flex-start;
  }
}

/* ========================================================
   KOMPONEN 2: KARTU PROFIL PENYIAR (CREW RADIOSBL)
======================================================== */
.sbl-announcer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
}
.sbl-announcer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.15);
  border-color: var(--primary);
}
.sbl-announcer-card__photo-wrapper {
  position: relative;
  width: 104px;
  height: 104px;
  margin-bottom: 16px;
}
.sbl-announcer-card__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  padding: 2px;
  background: var(--bg-surface);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}
.sbl-announcer-card__photo-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 3px solid var(--primary-light);
}
.sbl-announcer-card__onair-indicator {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: #10b981;
  border: 2.5px solid var(--bg-card);
  border-radius: 50%;
}
.sbl-announcer-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}
.sbl-announcer-card__role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.sbl-announcer-card__prog {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}
.sbl-announcer-card__bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================================
   KOMPONEN 3: PROGRAM SIARAN SBL 92.4 FM
======================================================== */
.sbl-prog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.sbl-prog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.sbl-prog-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sbl-prog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sbl-prog-card:hover .sbl-prog-thumb img {
  transform: scale(1.05);
}
.sbl-prog-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.sbl-prog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.sbl-prog-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}
.sbl-prog-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sbl-prog-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ========================================================
   KOMPONEN 4: LIVE RADIO SPECTACULAR HERO
======================================================== */
.sbl-live-hero-card {
  background: linear-gradient(135deg, #0b1329 0%, #0f1f42 50%, #0a1120 100%);
  border: 1px solid rgba(2, 132, 199, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.sbl-live-hero-card::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.sbl-spectrum-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 40px;
  margin: 20px auto;
}
.sbl-spectrum-bar {
  width: 5px;
  background: linear-gradient(to top, #0284c7, #38bdf8);
  border-radius: 4px;
  height: 8px;
  transition: height 0.2s ease;
}
.sbl-spectrum-bars.playing .sbl-spectrum-bar:nth-child(1) { animation: sbl-spec 0.8s ease-in-out infinite alternate; }
.sbl-spectrum-bars.playing .sbl-spectrum-bar:nth-child(2) { animation: sbl-spec 1.1s ease-in-out 0.2s infinite alternate; }
.sbl-spectrum-bars.playing .sbl-spectrum-bar:nth-child(3) { animation: sbl-spec 0.9s ease-in-out 0.4s infinite alternate; }
.sbl-spectrum-bars.playing .sbl-spectrum-bar:nth-child(4) { animation: sbl-spec 1.3s ease-in-out 0.1s infinite alternate; }
.sbl-spectrum-bars.playing .sbl-spectrum-bar:nth-child(5) { animation: sbl-spec 0.7s ease-in-out 0.3s infinite alternate; }
.sbl-spectrum-bars.playing .sbl-spectrum-bar:nth-child(6) { animation: sbl-spec 1.0s ease-in-out 0.5s infinite alternate; }
.sbl-spectrum-bars.playing .sbl-spectrum-bar:nth-child(7) { animation: sbl-spec 1.2s ease-in-out 0.2s infinite alternate; }
.sbl-spectrum-bars.playing .sbl-spectrum-bar:nth-child(8) { animation: sbl-spec 0.8s ease-in-out 0.4s infinite alternate; }

@keyframes sbl-spec {
  0% { height: 6px; }
  100% { height: 38px; }
}

.sbl-big-play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-size: 2.2rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 30px rgba(2, 132, 199, 0.5);
}
.sbl-big-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 45px rgba(2, 132, 199, 0.8);
  border-color: #ffffff;
}

/* ========================================================
   KOMPONEN 5: SINGLE POST ENHANCEMENT
======================================================== */
.article-reading-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.font-resizer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.btn-font-size {
  padding: 4px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition);
}
.btn-font-size:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.article-share-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff !important;
  border: none;
  cursor: pointer;
}
.btn-share--wa { background: #25d366; }
.btn-share--fb { background: #1877f2; }
.btn-share--x  { background: #0f1419; }
.btn-share--copy { background: var(--text-muted); }

.article-stream-dock {
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.article-stream-dock a {
  color: #fff;
  text-decoration: none;
}

/* ========================================================
   KOMPONEN 6: INFORMASI PUBLIK & DOKUMEN PPID
======================================================== */
.sbl-doc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.sbl-doc-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.sbl-doc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
[data-theme="dark"] .sbl-doc-icon {
  background: rgba(2, 132, 199, 0.2);
}
.sbl-doc-content {
  flex-grow: 1;
}
.sbl-doc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}
.sbl-doc-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.sbl-doc-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* ========================================================
   KOMPONEN 7: FOOTER MODERN RESMI (LPPL RADIO SBL)
======================================================== */
.radio-footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 56px 0 32px;
  margin-top: 60px;
  border-top: 3px solid #005ce6;
  position: relative;
  z-index: 10;
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-desc h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.footer-desc p {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-gov-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-gov-logos img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}
.footer-nav-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 92, 230, 0.4);
  display: inline-block;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.footer-nav-list li a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}
.footer-address-box {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.55;
}
.footer-address-box strong {
  color: #ffffff;
}
.footer-bottom-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: #64748b;
}

@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========================================================
   KOMPONEN 8: SBL FLOATING BOTTOM RADIO PLAYER DOCK (NON-OVERLAP)
======================================================== */
/* Safe Area Bottom agar floating player dock tidak menutupi footer/konten */
body {
  padding-bottom: 110px !important;
}
@media (max-width: 768px) {
  body {
    padding-bottom: 120px !important;
  }
}

.sbl-bottom-player-dock {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 72px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbl-bottom-player-dock.minimized {
  transform: translateY(calc(100% - 28px));
}

.sbl-bottom-dock__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
  max-width: 540px;
}

.sbl-bottom-dock__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  padding: 2px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.sbl-bottom-dock__info {
  min-width: 0;
  flex: 1;
}

.sbl-bottom-dock__label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.sbl-bottom-dock__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: pulse-live 1.5s infinite;
}

.sbl-bottom-dock__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.sbl-bottom-dock__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.sbl-bottom-dock__play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #005ce6;
  color: #ffffff;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 92, 230, 0.45);
  transition: transform 0.2s ease, background-color 0.2s ease;
  flex-shrink: 0;
}

.sbl-bottom-dock__play-btn:hover {
  background: #0284c7;
  transform: scale(1.06);
}

.sbl-bottom-dock__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.sbl-bottom-dock__bar {
  width: 3px;
  background: #38bdf8;
  border-radius: 2px;
  height: 100%;
  animation: equalize 1.2s infinite ease-in-out alternate;
  animation-play-state: paused;
}
.sbl-bottom-dock__bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.sbl-bottom-dock__bar:nth-child(2) { height: 80%; animation-delay: 0.3s; }
.sbl-bottom-dock__bar:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.sbl-bottom-dock__bar:nth-child(4) { height: 60%; animation-delay: 0.4s; }
.sbl-bottom-dock__bar:nth-child(5) { height: 30%; animation-delay: 0.25s; }

.sbl-bottom-dock__popout {
  color: #94a3b8;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 6px;
  border-radius: 6px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sbl-bottom-dock__popout:hover {
  color: #38bdf8;
}

.sbl-bottom-dock__vol {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.85rem;
}

.sbl-bottom-dock__vol input[type="range"] {
  width: 80px;
  accent-color: #38bdf8;
  cursor: pointer;
}

.sbl-dock-toggle-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #94a3b8;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.72rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.sbl-dock-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ========================================================
   KOMPONEN 9: MOBILE NAVIGATION DRAWER & BACKDROP
======================================================== */
.sbl-mobile-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.65) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sbl-mobile-backdrop.open {
  opacity: 1 !important;
  visibility: visible !important;
}

.sbl-mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 300px !important;
  max-width: 85vw !important;
  height: 100vh !important;
  background: var(--bg-card) !important;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4) !important;
  z-index: 10001 !important;
  display: flex !important;
  flex-direction: column !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow-y: auto !important;
}
.sbl-mobile-drawer.open {
  transform: translateX(0) !important;
}

.sbl-mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-surface);
}

.sbl-mobile-drawer__close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sbl-mobile-drawer__body {
  padding: 20px;
  flex: 1;
}

.sbl-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sbl-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}
.sbl-mobile-link:hover, .sbl-mobile-link.active {
  background: rgba(0, 92, 230, 0.08);
  color: #005ce6;
}

/* ========================================================
   RESPONSIF MEDIA QUERIES & BREAKPOINTS
======================================================== */
@media (max-width: 992px) {
  .nav-links {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 993px) {
  .mobile-toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .sbl-bottom-player-dock {
    height: 64px;
    padding: 0 14px;
  }
  .sbl-bottom-dock__vol,
  .sbl-bottom-dock__popout,
  .sbl-bottom-dock__bars {
    display: none !important;
  }
  .sbl-bottom-dock__controls {
    gap: 10px;
  }
  .sbl-bottom-dock__logo {
    width: 36px;
    height: 36px;
  }
  .sbl-bottom-dock__title {
    font-size: 0.8rem;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .sbl-bottom-dock__title {
    max-width: 130px;
  }
}

/* ========================================================
   SBL SECTION HEADER — BADGE GRADIENT PREMIUM
   ======================================================== */
.sbl-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.sbl-section-header__left {
  min-width: 0;
}

/* Badge "KABAR BUMI LASINRANG" — Gradient Premium */
.sbl-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #005ce6 0%, #0284c7 60%, #0ea5e9 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  box-shadow: 0 3px 12px rgba(2, 132, 199, 0.35);
  position: relative;
  overflow: hidden;
}

.sbl-section-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: sbl-badge-shimmer 2.5s infinite;
}

@keyframes sbl-badge-shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

.sbl-section-badge__dot {
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: sbl-pulse-badge 1.4s infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
}

@keyframes sbl-pulse-badge {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 5px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Judul section */
.sbl-section-title {
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ========================================================
   FILTER KATEGORI BERITA — MODERN PILL PREMIUM
   ======================================================== */
.sbl-category-filters {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  max-width: 100%;
}

.sbl-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.sbl-cat-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0284c7, #005ce6);
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: inherit;
}

.sbl-cat-btn > * {
  position: relative;
  z-index: 1;
}

.sbl-cat-btn span {
  position: relative;
  z-index: 1;
}

.sbl-cat-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.sbl-cat-btn.active,
.sbl-cat-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, #005ce6 0%, #0284c7 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.35);
  transform: translateY(-1px);
}

.sbl-cat-btn.active::before,
.sbl-cat-btn[aria-pressed="true"]::before {
  opacity: 1;
}

/* ========================================================
   MULTIMEDIA BADGE & LINKS
   ======================================================== */
.sbl-multimedia-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.35);
}

.sbl-multimedia-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.sbl-multimedia-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.sbl-multimedia-link--spotify {
  background: #1db954;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(29, 185, 84, 0.3);
}

.sbl-multimedia-link--spotify:hover {
  background: #17a349;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(29, 185, 84, 0.45);
}

.sbl-multimedia-link--youtube {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.sbl-multimedia-link--youtube:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.45);
}

/* Grid Multimedia 2-kolom default, responsif */
.sbl-multimedia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ========================================================
   RESPONSIVITAS KOMPREHENSIF — SEMUA BREAKPOINT
   ======================================================== */

/* ── Tablet Besar (≤1200px) ───────────────────────── */
@media (max-width: 1200px) {
  .hero-stage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .radio-features-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
  }
}

/* ── Tablet (≤1024px) ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-stage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sbl-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sbl-category-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    scrollbar-width: thin;
  }
  .sbl-category-filters::-webkit-scrollbar {
    height: 3px;
  }
  .sbl-category-filters::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
  }
  .sbl-multimedia-grid {
    gap: 16px;
  }
}

/* ── Tablet Kecil (≤900px) ────────────────────────── */
@media (max-width: 900px) {
  .radio-features-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Mobile Besar (≤768px) ────────────────────────── */
@media (max-width: 768px) {
  .hero-stage-grid {
    grid-template-columns: 1fr !important;
  }

  .sbl-player-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(16px, 4vw, 22px);
    gap: 14px;
  }

  .sbl-player-banner__action {
    align-self: flex-end;
  }

  .sbl-player-banner__wave-bg {
    display: none;
  }

  .sbl-player-banner__title {
    font-size: 1.1rem;
    white-space: normal;
  }

  .sbl-multimedia-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sbl-multimedia-header {
    flex-direction: column;
    gap: 10px;
  }

  .sbl-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sbl-category-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
  }

  .news-grid {
    grid-template-columns: 1fr !important;
  }

  .radio-features-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 14px;
  }

  .topbar {
    display: none; /* Sembunyikan topbar di mobile untuk space */
  }
}

/* ── Mobile Sedang (≤600px) ────────────────────────── */
@media (max-width: 600px) {
  .sbl-player-banner {
    padding: 16px;
  }
  .sbl-player-banner__cover-box {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }
  .sbl-player-banner__play-btn {
    width: 50px;
    height: 50px;
  }
  .radio-hero-section {
    padding: 16px 0;
  }
  .sbl-section-title {
    font-size: 1.15rem;
  }
  .sbl-cat-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
  .feature-box {
    padding: 16px;
  }
}

/* ── Mobile Kecil (≤480px) ─────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .navbar-inner {
    padding: 8px 0;
    gap: 10px;
  }
  .brand-meta h1 {
    font-size: 1rem;
  }
  .brand-meta p {
    display: none; /* Sembunyikan tagline di layar sangat kecil */
  }
  .sbl-player-banner__title {
    font-size: 1rem;
  }
  .sbl-player-banner__meta {
    font-size: 0.78rem;
    gap: 8px;
  }
  .news-card {
    border-radius: 12px;
  }
  .news-card-thumb {
    height: 160px;
  }
  .sbl-section-badge {
    font-size: 0.65rem;
    padding: 4px 12px;
  }
  .sbl-section-title {
    font-size: 1.05rem;
  }
  .headline-news-card {
    min-height: 260px;
  }
  .headline-title {
    font-size: 1.1rem;
  }
}

/* ── Mobile Extra-Kecil (≤390px) ──────────────────── */
@media (max-width: 390px) {
  .container {
    padding: 0 10px;
  }
  .sbl-player-banner {
    padding: 14px;
    gap: 10px;
  }
  .sbl-player-banner__cover-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  .sbl-player-banner__title {
    font-size: 0.95rem;
  }
  .sbl-cat-btn {
    padding: 5px 10px;
    font-size: 0.74rem;
  }
  .schedule-item {
    flex-wrap: wrap;
    gap: 6px;
  }
  .schedule-genre {
    display: none; /* Sembunyikan genre di layar sangat kecil */
  }
}

/* ── Mobile Minimum (≤360px) ──────────────────────── */
@media (max-width: 360px) {
  .container {
    padding: 0 8px;
  }
  .navbar-inner {
    gap: 6px;
  }
  .brand-logo {
    height: 36px;
    max-height: 36px;
  }
  .sbl-section-title {
    font-size: 1rem;
  }
  .sbl-player-banner__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .feature-box {
    padding: 12px;
    border-radius: var(--radius-md);
  }
}

/* ── Minimum Width (≤320px) ───────────────────────── */
@media (max-width: 320px) {
  .container {
    padding: 0 6px;
  }
  .sbl-player-banner {
    padding: 10px;
  }
  .sbl-section-badge {
    font-size: 0.6rem;
    padding: 3px 10px;
  }
}

