/*!
 * Beat Radio ID — main stylesheet
 * Structure:
 *   1. Design tokens
 *   2. Base / reset
 *   3. Layout utilities
 *   4. Navbar (global)
 *   5. Search panel (global)
 *   6. Cards & hover (global)
 *   7. Live player / wave (global)
 *   8. Footer (global)
 *   9. Hero & homepage (index)
 *  10. Channels page
 *  11. Channel detail
 *  12. Playlist list & detail
 *  13. Forms / support pages
 *  14. Mobile polish
 */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */
:root {
  --beat-bg: #07080c;
  --beat-surface: #0f1016;
  --beat-red: #ff1e36;
  --beat-red-dim: rgba(255, 30, 54, 0.12);
  --beat-red-600: #e01028;
  --ocean: #5bb0ff;
  --ocean-mid: #3b9eff;
  --ocean-deep: #005aaa;
  --ocean-dim: rgba(91, 176, 255, 0.12);
  --ocean-border: rgba(91, 176, 255, 0.32);
  --ocean-glow: rgba(59, 158, 255, 0.18);
  --nav-height: 74px;
}

/* ==========================================================================
   2. Base
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--beat-bg);
  overflow-x: hidden;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

::-webkit-scrollbar-thumb {
  background: rgba(59, 158, 255, 0.35);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 158, 255, 0.55);
}

/* ==========================================================================
   3. Shared overlays & glass
   ========================================================================== */
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7,8,12,0.92) 0%, rgba(7,8,12,0.72) 28%, rgba(7,8,12,0.35) 58%, rgba(7,8,12,0.15) 100%),
    linear-gradient(180deg, rgba(7,8,12,0.35) 0%, rgba(7,8,12,0.05) 40%, rgba(7,8,12,0.55) 100%);
}

.card-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.88) 100%);
}

.glass {
  background: rgba(15, 16, 22, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glow-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--beat-surface);
}

/* ==========================================================================
   4. Navbar (global)
   ========================================================================== */
#navbarShell {
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.35), transparent) !important;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

#navbar.nav-scrolled #navbarShell,
#navbar.scrolled #navbarShell {
  background: rgba(7, 8, 11, 0.9) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(91, 176, 255, 0.12);
}

#navbar.nav-scrolled .nav-inner,
#navbar .nav-inner {
  min-height: 64px;
}

#navbar .nav-link {
  white-space: nowrap;
}

#navbar.nav-hidden #navbarShell {
  transform: none !important;
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: var(--ocean-mid);
  opacity: 0.85;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active,
a.nav-link.text-white {
  color: #fff;
}

.nav-link.active::after,
a.nav-link.text-white::after {
  transform: scaleX(1);
  background: var(--beat-red) !important;
  opacity: 1;
}

.nav-dropdown-menu a:hover {
  color: var(--ocean) !important;
  background: var(--ocean-dim);
}

/* --- Mobile menu (hamburger) — force visible when open --- */
.mobile-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
  background: rgba(9, 10, 15, 0.98) !important;
  border-bottom: 1px solid rgba(91, 176, 255, 0.12);
}

.mobile-menu.open {
  max-height: none;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Nav blue accent variations (from logo) */
.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  transform: scaleX(1);
  background: var(--ocean) !important;
  opacity: 1;
}

#navbar .nav-inner .nav-link.active::after {
  background: var(--beat-red) !important;
}

#searchBtn:hover,
#menuBtn:hover,
#loginBtn:hover {
  color: var(--ocean) !important;
  border-color: var(--ocean-border);
  box-shadow: 0 0 18px var(--ocean-glow);
}

#menuBtn {
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

#menuBtn[aria-expanded="true"] {
  background: rgba(91, 176, 255, 0.15);
  color: var(--ocean);
  box-shadow: 0 0 16px var(--ocean-glow);
}

#loginBtn {
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#loginBtn:hover {
  background: rgba(91, 176, 255, 0.1);
}

/* Login page */
.page-login .login-shell {
  min-height: 100vh;
}

.page-login .login-card {
  border: 1px solid rgba(91, 176, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(91, 176, 255, 0.06), 0 24px 60px rgba(0, 0, 0, 0.45);
}

.page-login .login-input:focus {
  border-color: rgba(91, 176, 255, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(59, 158, 255, 0.15);
}

.page-login .pwd-toggle {
  color: rgba(255, 255, 255, 0.45);
}

.page-login .pwd-toggle:hover {
  color: var(--ocean);
}


/* ==========================================================================
   5. Search panel (global)
   ========================================================================== */
.search-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: 0.2s ease;
  z-index: 80;
}

.search-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==========================================================================
   6. Cards & hover — blue glow only (global)
   ========================================================================== */
.glass-card,
.channel-card,
.playlist-card,
.feature-card,
.playlist-item,
.glow-card,
.card-hover {
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.glass-card:hover,
.channel-card:hover,
.playlist-card:hover,
.feature-card:hover,
.playlist-item:hover,
.glow-card:hover,
.card-hover:hover {
  border-color: rgba(91, 176, 255, 0.55) !important;
  box-shadow:
    0 0 0 1px rgba(91, 176, 255, 0.25),
    0 0 28px rgba(59, 158, 255, 0.28),
    0 16px 40px rgba(0, 90, 170, 0.15) !important;
  transform: translateY(-2px);
}

.channel-card:hover {
  transform: translateY(-3px);
}

.channel-playing {
  box-shadow: 0 0 0 1px rgba(91, 176, 255, 0.55), 0 12px 32px rgba(59, 158, 255, 0.18) !important;
  border-color: rgba(91, 176, 255, 0.45) !important;
}

.channel-play {
  opacity: 0;
  transition: opacity 0.22s ease;
}

.channel-card:hover .channel-play {
  opacity: 1;
}

.channel-play > span {
  transform: scale(0.88);
  transition: transform 0.22s ease;
}

.channel-card:hover .channel-play > span {
  transform: scale(1);
}

.channel-card .play-overlay {
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
}

.channel-card:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.06) !important;
}

.playing-badge {
  opacity: 0;
  transition: 0.2s ease;
}

.channel-playing .playing-badge {
  opacity: 1;
}

.quick-card {
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.quick-card:hover {
  transform: translateY(-3px);
}

.quick-card.active {
  border-color: rgba(255, 30, 54, 0.45);
  background: rgba(255, 30, 54, 0.06);
}

/* Primary CTA stays red */
.bg-beat-500 {
  background-color: var(--beat-red) !important;
}

.hover\:bg-beat-600:hover {
  background-color: var(--beat-red-600) !important;
}

.text-beat-500 {
  color: var(--beat-red);
}

.text-ocean-400,
.eyebrow-ocean,
.text-ocean {
  color: var(--ocean) !important;
}

.badge-live,
.rounded.bg-beat-500 {
  background-color: var(--beat-red);
}

.channel-chip:hover,
.tab-chip:hover,
[data-channel-tab]:hover {
  border-color: var(--ocean-border) !important;
  color: #fff !important;
}

.channel-chip.active,
.tab-chip.active,
[data-channel-tab].active {
  background: var(--beat-red) !important;
  border-color: var(--beat-red) !important;
  color: #fff !important;
}

/* ==========================================================================
   7. Live player / wave (global)
   ========================================================================== */
.wave span,
.wave-bar,
#wave span {
  animation: beat-wave 1s ease-in-out infinite;
  transform-origin: bottom;
  background: linear-gradient(180deg, #ff1e36 0%, #ff4d5e 25%, #5bb0ff 70%, #005aaa 100%) !important;
}

.wave span:nth-child(2) { animation-delay: 0.12s; }
.wave span:nth-child(3) { animation-delay: 0.24s; }
.wave span:nth-child(4) { animation-delay: 0.36s; }
.wave span:nth-child(5) { animation-delay: 0.48s; }

.wave.paused span {
  animation-play-state: paused;
}

@keyframes beat-wave {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

.toast {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.toast.show,
#fbToast.show {
  transform: translateY(0);
  opacity: 1;
}

#fbToast {
  pointer-events: none;
  transition: 0.25s ease;
  opacity: 0;
}

/* ==========================================================================
   8. Footer (global)
   ========================================================================== */
.footer-social-v26 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.2s ease;
}

.footer-social-v26 svg {
  width: 17px;
  height: 17px;
}

.footer-social-v26:hover,
.social-btn:hover,
.footer-social a:hover,
footer a.rounded-full:hover {
  color: var(--ocean) !important;
  background: var(--ocean-dim) !important;
  border-color: var(--ocean-border) !important;
  box-shadow: 0 0 22px var(--ocean-glow);
  transform: translateY(-2px);
}

footer a:hover,
.link-secondary {
  color: var(--ocean) !important;
}

.footer-contact-v25 {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .footer-contact-v25 {
    margin-top: 0;
  }
}

.footer-social-v24 {
  margin-top: 1.5rem;
}

.footer-social-btn-v24 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.2s ease;
}

.footer-social-btn-v24 svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.55;
}

.footer-social-btn-v24:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.social-icon-v22 {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  border: 0;
  background: transparent;
  border-radius: 999px;
  transition: 0.2s ease;
}

.social-icon-v22 svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.55;
}

.social-icon-v22:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* ==========================================================================
   9. Homepage — hero & controls (index)
   ========================================================================== */
.page-index .hero-copy,
.hero-copy {
  width: min(76vw, 900px) !important;
  max-width: 900px !important;
}

.hero-copy h1 {
  max-width: 900px !important;
  text-wrap: balance;
  font-size: clamp(2rem, 3.35vw, 3.25rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em;
}

.hero-copy p {
  max-width: 760px !important;
}

.hero-slide {
  transition: opacity 0.7s ease;
}

.hero-slide.hidden-slide {
  opacity: 0;
  pointer-events: none;
}

.hero-slide.active-slide {
  opacity: 1;
}

.hero-control {
  transition: 0.2s ease;
}

.hero-control:hover {
  transform: translateY(-1px);
}

.hero-edge-control {
  position: absolute;
  top: 50%;
  z-index: 30;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-edge-control:hover {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.hero-edge-control:active {
  transform: translateY(-50%) scale(0.97);
}

#heroDots {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 5px !important;
  position: absolute !important;
  left: auto !important;
  bottom: 120px !important; /* di atas mini player LunaRadio */
  right: 68px !important;
  transform: none !important;
  z-index: 35 !important;
}

#heroSlides.is-dragging {
  cursor: grabbing;
  user-select: none;
}

/* ==========================================================================
   10. Channels page
   ========================================================================== */
.page-channels .channel-grid img {
  background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   11. Channel detail
   ========================================================================== */
.page-channel .channel-hero-copy,
.channel-hero-copy {
  width: min(78vw, 780px);
  max-width: 780px;
}

.page-channel .playlist-item.playing,
.playlist-item.playing {
  background: rgba(255, 30, 54, 0.08);
}

.page-channel .playlist-item:hover,
.playlist-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   12. Playlist list & detail
   ========================================================================== */
.ep-item {
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ep-item:hover {
  border-left: 2px solid var(--ocean-mid);
  background: var(--ocean-dim);
}

.ep-item.active {
  border-left: 2px solid var(--beat-red);
  background: var(--beat-red-dim);
}

.btn-ocean,
.btn-secondary {
  border: 1px solid var(--ocean-border);
  color: var(--ocean);
  background: transparent;
}

.btn-ocean:hover,
.btn-secondary:hover {
  background: var(--ocean-dim);
  border-color: var(--ocean);
  color: #fff;
  box-shadow: 0 0 28px var(--ocean-glow);
}

/* Share modal helpers (playlist-detail) */
.page-playlist-detail #shareModal,
#shareModal {
  /* visibility controlled by JS */
}

/* ==========================================================================
   13. Forms / support pages (contact, feedback, faq)
   ========================================================================== */
.page-feedback input:focus,
.page-feedback textarea:focus,
.page-feedback select:focus,
.page-contact input:focus,
.page-contact textarea:focus {
  border-color: rgba(91, 176, 255, 0.5);
}

.page-faq details summary {
  list-style: none;
}

.page-faq details summary::-webkit-details-marker {
  display: none;
}

/* ==========================================================================
   14. Mobile polish
   ========================================================================== */
@media (max-width: 1023px) {
  .hero-copy {
    width: min(82vw, 760px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 5vw, 2.8rem) !important;
  }

  #heroDots {
    right: 62px !important;
    bottom: 116px !important;
  }
}

@media (max-width: 767px) {
  .footer-social-v24 {
    margin-top: 1.25rem;
  }
}

@media (max-width: 639px) {
  #navbar .nav-inner {
    height: 60px !important;
    min-height: 60px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 12px !important;
  }

  main {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  footer > div {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Jangan paksa height 68px pada player dock — itu menekan LunaRadio */
  .fixed.bottom-0 > div:not(.player-dock-inner) {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  h1 {
    letter-spacing: -0.03em;
  }

  .glow-card {
    border-radius: 14px;
  }

  .channel-hero-copy {
    width: calc(100vw - 48px);
    max-width: none;
  }

  .hero-copy {
    width: calc(100vw - 64px) !important;
    max-width: none !important;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.25rem) !important;
    line-height: 1.08 !important;
    max-width: none !important;
  }

  .hero-copy p {
    max-width: none !important;
  }

  .hero-edge-control {
    width: 38px;
    height: 38px;
  }

  #heroDots {
    right: 50px !important;
    bottom: 112px !important;
  }

  #navbar.nav-scrolled #navbarShell {
    background: rgba(8, 9, 13, 0.94);
  }
}

/* ==========================================================================
   4b. Playlist dropdown (desktop) + mobile submenu
   ========================================================================== */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  max-width: min(280px, 90vw);
  padding: 0.5rem;
  border-radius: 12px;
  background: rgba(15, 16, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 100;
}

/* Hover bridge so menu doesn't disappear when moving cursor down */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a,
.nav-dropdown-inner a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-inner a:hover {
  color: #fff !important;
  background: var(--ocean-dim);
}

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-sub.open {
  max-height: none;
  overflow: visible;
}

@media (max-width: 1023px) {
  /* Desktop dropdown hidden on mobile — mobile menu handles playlist */
  .nav-dropdown-menu {
    display: none !important;
  }
}

/* Prevent nav wrapping / overflow mess */
#navbar .nav-inner {
  flex-wrap: nowrap;
}

#navbar nav.lg\:flex {
  flex-wrap: nowrap;
  gap: 1.25rem;
}

@media (min-width: 1024px) and (max-width: 1200px) {
  #navbar nav.lg\:flex {
    gap: 0.85rem;
    font-size: 12px;
  }
}


/* ==========================================================================
   Playlist detail — cinema video player
   ========================================================================== */
.page-playlist-detail .video-wrap,
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.page-playlist-detail .video-wrap iframe,
.video-wrap iframe,
#ytPlayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 1024px) {
  .page-playlist-detail .video-wrap {
    min-height: 420px;
  }
}

@media (min-width: 1280px) {
  .page-playlist-detail .video-wrap {
    min-height: 480px;
  }
}



/* Mobile submenu: expand fully, no nested scroll */
.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-sub.open {
  max-height: none;
  overflow: visible;
}

.mobile-menu.open {
  max-height: none;
  overflow-y: visible;
}

.mobile-menu.open .mobile-sub.open {
  max-height: none;
  overflow: visible;
}


/* ==========================================================================
   Page hero banner (about / contact / playlist) — studio bg + dark gradient
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 640px) {
  .page-hero {
    min-height: 340px;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    min-height: 400px;
  }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #07080c 0%, rgba(7, 8, 12, 0.92) 32%, rgba(7, 8, 12, 0.55) 62%, rgba(7, 8, 12, 0.25) 100%),
    linear-gradient(0deg, #07080c 0%, rgba(7, 8, 12, 0.15) 45%, rgba(7, 8, 12, 0.4) 100%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .page-hero-content {
    padding-bottom: 3.25rem;
  }
}

/* Mobile playlist sub — always expandable, no inner scroll */
.mobile-sub {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.28s ease;
}

.mobile-sub.open {
  max-height: 2000px !important;
  overflow: visible !important;
  height: auto !important;
}





/* ==========================================================================
   Playlist detail — daftar putar height = video, scroll if > 5
   ========================================================================== */
.page-playlist-detail .ep-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  background: #0e0f14;
}

.page-playlist-detail .ep-panel-head {
  flex-shrink: 0;
}

.page-playlist-detail .ep-list {
  --ep-row: 76px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: hidden; /* JS enables scroll when > 5 */
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #ff1e36 rgba(255,255,255,0.06);
}

.page-playlist-detail .ep-list.can-scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.page-playlist-detail .ep-list::-webkit-scrollbar {
  width: 6px;
}
.page-playlist-detail .ep-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  margin: 6px 0;
}
.page-playlist-detail .ep-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, #ff1e36 0%, #5bb0ff 100%);
}
.page-playlist-detail .ep-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff4d5e 0%, #8ecbff 100%);
}

.page-playlist-detail .ep-item {
  min-height: var(--ep-row);
  height: var(--ep-row);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Mobile: show 5 rows then scroll */
@media (max-width: 1023px) {
  .page-playlist-detail .ep-list {
    max-height: calc(var(--ep-row) * 5);
  }
  .page-playlist-detail .ep-list.can-scroll {
    overflow-y: auto;
  }
  .page-playlist-detail .ep-list.is-short {
    max-height: none;
    overflow: visible;
  }
}

/* LunaRadio dock */
#lunaradio {
  width: 100% !important;
  height: 100% !important;
  min-height: 90px;
}
.fixed.inset-x-0.bottom-0 #lunaradio,
.fixed.inset-x-0.bottom-0 [id^="lunaradio"] {
  border-radius: 0;
}


/* ==========================================================================
   Player dock — minimize / expand
   ========================================================================== */
.player-dock {
  border-top: 1px solid rgba(91, 176, 255, 0.12);
  background: rgba(11, 12, 17, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.player-dock-inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}

.player-dock-expanded {
  position: relative;
  height: 110px;
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom center;
}

.player-luna-host {
  height: 100%;
  width: 100%;
}

.player-dock-toolbar {
  position: absolute;
  top: 6px;
  right: 12px;
  z-index: 5;
  display: flex;
  gap: 6px;
  pointer-events: none;
}

.player-dock-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(91, 176, 255, 0.25);
  background: rgba(9, 12, 20, 0.75);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 0 16px rgba(59, 158, 255, 0.12);
}

.player-dock-btn:hover {
  color: #fff;
  border-color: rgba(91, 176, 255, 0.55);
  background: rgba(59, 158, 255, 0.15);
  transform: translateY(-1px);
}

.player-dock-btn svg {
  opacity: 0.9;
}

/* Mini bar (collapsed) */
.player-dock-mini {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
  padding: 0 16px;
  max-width: 1360px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.08s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.player-dock.is-minimized .player-dock-mini {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.player-mini-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.player-mini-live {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.player-mini-live i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff1e36;
  box-shadow: 0 0 0 0 rgba(255, 30, 54, 0.5);
}

.player-dock.is-playing .player-mini-live i {
  animation: player-live-pulse 1.6s ease-out infinite;
}

@keyframes player-live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 30, 54, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 30, 54, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 30, 54, 0); }
}

.player-mini-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  flex-shrink: 0;
}

.player-mini-wave span {
  width: 3px;
  height: 40%;
  border-radius: 2px;
  background: linear-gradient(180deg, #ff1e36, #5bb0ff);
  transform-origin: bottom;
  animation: player-mini-wave 0.9s ease-in-out infinite;
  opacity: 0.35;
}

.player-dock.is-playing .player-mini-wave span {
  opacity: 1;
}

.player-mini-wave span:nth-child(2) { animation-delay: 0.1s; height: 70%; }
.player-mini-wave span:nth-child(3) { animation-delay: 0.2s; height: 100%; }
.player-mini-wave span:nth-child(4) { animation-delay: 0.3s; height: 55%; }
.player-mini-wave span:nth-child(5) { animation-delay: 0.4s; height: 80%; }

.player-dock:not(.is-playing) .player-mini-wave span {
  animation: none;
  height: 30%;
}

@keyframes player-mini-wave {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}

.player-mini-meta {
  min-width: 0;
}

.player-mini-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(91, 176, 255, 0.85);
  margin: 0;
}

.player-mini-title {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(52vw, 420px);
}

.player-mini-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Icon + text side by side */
.player-mini-action {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  height: 40px !important;
  padding: 0 12px 0 6px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  cursor: pointer;
  width: auto !important;
  min-width: 0 !important;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.player-mini-action:hover {
  border-color: rgba(91, 176, 255, 0.5) !important;
  background: rgba(59, 158, 255, 0.16) !important;
  box-shadow: 0 0 16px rgba(59, 158, 255, 0.2);
}
.player-mini-action.player-mini-expand {
  border-color: rgba(255, 30, 54, 0.4) !important;
  background: rgba(255, 30, 54, 0.12) !important;
}
.player-mini-action.player-mini-expand:hover {
  border-color: rgba(255, 30, 54, 0.65) !important;
  background: rgba(255, 30, 54, 0.22) !important;
  box-shadow: 0 0 16px rgba(255, 30, 54, 0.25);
}
.player-mini-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.player-mini-icon-expand {
  background: rgba(255, 30, 54, 0.15);
}
.player-mini-btn-label,
#playerMiniToggleLabel {
  display: inline-block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  opacity: 1 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* legacy class kept for safety */
.player-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

/* Minimized state: hide Luna UI (audio keeps playing), show mini bar */
.player-dock.is-minimized .player-dock-expanded {
  height: 0 !important;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(12px) scaleY(0.92);
}

.player-dock.is-minimized .player-dock-mini {
  display: flex;
}

.player-dock.is-minimized {
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(91, 176, 255, 0.08);
}

/* Keep luna host in DOM for audio — visually collapsed only */
.player-dock.is-minimized .player-luna-host {
  /* audio elements remain; visual clipped by parent height 0 */
}

@media (max-width: 639px) {
  .player-dock-expanded {
    height: 152px !important;
    min-height: 152px !important;
  }
  .player-dock:not(.is-minimized) .player-dock-expanded {
    height: 152px !important;
    min-height: 152px !important;
  }
  .player-luna-host,
  .player-luna-host > div,
  .player-dock:not(.is-minimized) .player-luna-host,
  .player-dock:not(.is-minimized) .player-luna-host > div {
    min-height: 152px !important;
    height: 152px !important;
  }
  .player-dock-btn span {
    display: none;
  }
  .player-dock-toolbar {
    right: 8px;
    top: 4px;
  }
  .player-mini-title {
    max-width: 42vw;
  }
  /* Fontratio-friendly: more room for LunaRadio controls */
  body {
    padding-bottom: 0;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .player-dock-expanded,
  .player-dock:not(.is-minimized) .player-dock-expanded {
    height: 130px !important;
    min-height: 130px !important;
  }
  .player-luna-host,
  .player-luna-host > div {
    min-height: 130px !important;
    height: 130px !important;
  }
}

.player-dock:not(.is-minimized) .player-dock-expanded {
  height: 110px !important;
  opacity: 1 !important;
  overflow: visible;
  pointer-events: auto;
}
.player-dock:not(.is-minimized) .player-luna-host,
.player-dock:not(.is-minimized) .player-luna-host > div {
  width: 100% !important;
  height: 100% !important;
  min-height: 90px;
}

/* Mini player: wave always on, no play/pause */
.player-dock.mini-always-on .player-mini-wave span,
.player-dock .player-mini-wave span {
  opacity: 1 !important;
  animation: player-mini-wave 0.9s ease-in-out infinite !important;
}
.player-dock.mini-always-on .player-mini-live i,
.player-dock .player-mini-live i {
  animation: player-live-pulse 1.6s ease-out infinite !important;
}
.player-dock:not(.is-playing) .player-mini-wave span {
  opacity: 1;
  animation: player-mini-wave 0.9s ease-in-out infinite;
  height: auto;
}

/* Force player dock visible (mobile + desktop) */
#miniPlayerBar.player-dock,
.player-dock[data-beat-dock="1"] {
  display: block !important;
  visibility: visible !important;
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 70 !important;
  pointer-events: auto !important;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(11, 12, 17, 0.97) !important;
}

@media (max-width: 639px) {
  #miniPlayerBar.player-dock .player-dock-expanded,
  #miniPlayerBar.player-dock:not(.is-minimized) .player-dock-expanded {
    height: 160px !important;
    min-height: 160px !important;
  }
  #miniPlayerBar.player-dock .player-luna-host,
  #miniPlayerBar.player-dock .player-luna-host > div {
    height: 160px !important;
    min-height: 160px !important;
  }
}

/* Related grid always show cells */
#relatedGrid {
  min-height: 8rem;
}
#relatedGrid a {
  display: block;
}

/* ==========================================================================
   Mobile player dock — must always be visible
   ========================================================================== */
@media (max-width: 1023px) {
  #miniPlayerBar.player-dock,
  .player-dock[data-beat-dock="1"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    z-index: 9999 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    background: rgba(11, 12, 17, 0.98) !important;
    border-top: 1px solid rgba(91, 176, 255, 0.18) !important;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.5) !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
  }

  #miniPlayerBar .player-dock-inner {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }

  #miniPlayerBar:not(.is-minimized) .player-dock-expanded {
    display: block !important;
    height: 168px !important;
    min-height: 168px !important;
    max-height: 168px !important;
    opacity: 1 !important;
    overflow: hidden !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  #miniPlayerBar:not(.is-minimized) .player-luna-host,
  #miniPlayerBar:not(.is-minimized) .player-luna-host > div,
  #miniPlayerBar:not(.is-minimized) [id^="lunaradio"] {
    display: block !important;
    width: 100% !important;
    height: 168px !important;
    min-height: 168px !important;
  }

  #miniPlayerBar.is-minimized .player-dock-mini {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
    height: 58px !important;
    min-height: 58px !important;
  }

  #miniPlayerBar.is-minimized .player-dock-expanded {
    height: 0 !important;
    min-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  /* Body space so content not hidden under player */
  body {
    padding-bottom: calc(168px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body.player-is-minimized {
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)) !important;
  }
}


/* ——— Footer: teks lebih putih & sedikit lebih besar ——— */
footer .text-\[10px\] {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  letter-spacing: 0.18em;
}
footer .text-xs,
footer a.text-xs,
footer p.text-xs {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.72) !important;
}
footer .text-white\/30 { color: rgba(255, 255, 255, 0.55) !important; }
footer .text-white\/20 { color: rgba(255, 255, 255, 0.4) !important; }
footer .text-white\/45 { color: rgba(255, 255, 255, 0.72) !important; }
footer .text-white\/50 { color: rgba(255, 255, 255, 0.78) !important; }
footer a:hover { color: #fff !important; }

/* Mini player button labels */
.player-mini-with-label {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 44px;
  padding: 6px 8px !important;
  height: auto !important;
  border-radius: 10px !important;
}
.player-mini-btn-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}
.player-dock.is-minimized .player-mini-actions {
  gap: 6px;
}

/* Mini player labels — always visible */
.player-mini-actions .player-mini-with-label {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  min-width: 48px !important;
  height: auto !important;
  padding: 6px 8px !important;
}
.player-mini-actions .player-mini-btn-label {
  display: block !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  opacity: 1 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}
#playerMiniToggleLabel {
  display: block !important;
  color: #fff !important;
}

/* Override fixed circle so Play/Expand labels fit */
.player-mini-icon.player-mini-with-label {
  width: auto !important;
  min-width: 52px !important;
  height: auto !important;
  min-height: 44px !important;
  padding: 6px 10px !important;
  border-radius: 12px !important;
  flex-direction: column !important;
  gap: 3px !important;
}
.player-mini-icon.player-mini-with-label .player-mini-btn-label,
.player-mini-icon.player-mini-with-label #playerMiniToggleLabel {
  display: block !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  line-height: 1 !important;
}
.player-dock.is-minimized {
  min-height: 64px;
}
.player-dock.is-minimized .player-dock-mini {
  height: 64px;
}


/* ========== HERO (rapi) ========== */
.hero-section {
  position: relative;
  width: 100%;
  height: clamp(560px, 88vh, 720px);
  overflow: hidden;
  background: #07080c;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
  z-index: 0;
}
.hero-slide.active-slide {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide.hidden-slide {
  opacity: 0;
  pointer-events: none;
}
.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 7.5rem;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  left: 0;
  right: 0;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 0 3.5rem 8rem;
  }
}
.hero-copy {
  max-width: 620px;
  width: 100%;
}
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-live {
  background: #ff1e36;
  color: #fff;
  padding: 0.35rem 0.6rem;
  border-radius: 0.3rem;
  letter-spacing: 0.06em;
}
.hero-channel {
  color: rgba(255,255,255,0.8);
}
.hero-title {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 0;
}
.hero-title span {
  color: #ff1e36;
}
.hero-desc {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.hero-cta {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
  background: #ff1e36;
  color: #fff;
  padding: 0.85rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 30, 54, 0.22);
}
.hero-cta:hover {
  background: #e01028;
}
.hero-cta-icon {
  display: inline-flex;
  width: 1.7rem;
  height: 1.7rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #ff1e36;
  font-size: 0.7rem;
}
.hero-cta-icon svg {
  width: 0.85rem;
  height: 0.85rem;
  margin-left: 1px;
}

/* arrows */
.hero-section .hero-edge-control {
  position: absolute;
  top: 50%;
  z-index: 40;
  transform: translateY(-50%);
}
.hero-section .hero-prev { left: 0.75rem; }
.hero-section .hero-next { right: 0.75rem; }
@media (min-width: 1024px) {
  .hero-section .hero-prev { left: 1.25rem; }
  .hero-section .hero-next { right: 1.25rem; }
}

/* hero dots — kiri bawah area konten, tidak bentrok ads */
.hero-section .hero-dots,
.hero-section #heroDots {
  position: absolute !important;
  left: 1.5rem !important;
  right: auto !important;
  bottom: 5.5rem !important;
  top: auto !important;
  transform: none !important;
  z-index: 40 !important;
  display: flex !important;
  gap: 6px !important;
  justify-content: flex-start !important;
}
@media (min-width: 1024px) {
  .hero-section #heroDots {
    left: 3.5rem !important;
    bottom: 5.75rem !important;
  }
}

/* ===== ADS CARD (kanan) ===== */
.hero-ads {
  position: absolute;
  z-index: 36;
  top: 50%;
  right: 4.5rem;
  transform: translateY(-50%);
  width: 280px;
}
@media (min-width: 1280px) {
  .hero-ads { width: 300px; right: 5.5rem; }
}
@media (max-width: 1023px) {
  .hero-ads {
    width: 160px;
    right: 1rem;
    top: auto;
    bottom: 5.5rem;
    transform: none;
  }
}
@media (max-width: 639px) {
  .hero-ads {
    width: 120px;
    right: 0.6rem;
    bottom: 5.25rem;
  }
}
.hero-ads-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0c0d12;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.hero-ads-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
}
.hero-ads-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.hero-ads-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-ads-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-ads-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.hero-ads-dots button {
  width: 6px;
  height: 6px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.hero-ads-dots button.is-on {
  width: 16px;
  background: #5bb0ff;
}
