/* love2gotv.css */
/* 2026 */
    :root{
      --bg:#0d0d11;
      --panel:#111216;
      --panel-2:#17181d;
      --text:#ffffff;
      --muted:rgba(255,255,255,.72);
      --line:rgba(255,255,255,.09);
      --yellow:#f3df12;
      --red:#9d1217;
      --red-2:#b7171e;
      --chip:rgba(255,255,255,.08);
      --shadow:0 18px 50px rgba(0,0,0,.45);
    }

    * { box-sizing: border-box; }

   html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #09090c;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: background 1.5s ease;
}

    body {
      background:
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.55)),
        radial-gradient(circle at center, rgba(164,23,30,.18), transparent 45%),
        url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    }

    body.dynamic-bg {
      background-size: cover !important;
      background-position: center !important;
      background-repeat: no-repeat !important;
      background-attachment: fixed;
    }

   .player-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

    .player-page::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(10,10,14,.90) 0%, rgba(10,10,14,.58) 45%, rgba(10,10,14,.82) 100%);
      z-index: -1;
    }

    .player-page::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 75% 30%, rgba(255,255,255,.08), transparent 18%),
        radial-gradient(circle at 30% 78%, rgba(255,255,255,.06), transparent 14%),
        radial-gradient(circle at 85% 80%, rgba(151,20,27,.25), transparent 18%);
      mix-blend-mode: screen;
      opacity: .55;
      pointer-events: none;
      z-index: -1;
    }

    .top-nav {
      width: 100%;
      padding: 16px 0 0;
      position: relative;
      z-index: 20;
    }

    .top-nav-inner {
      width: min(1320px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      color: #fff;
      text-decoration: none;
      font-weight: 800;
      letter-spacing: .8px;
      font-size: 1.08rem;
      white-space: nowrap;
    }

    .main-menu {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .main-menu a,
    .main-menu button {
      color: rgba(255,255,255,.92);
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      transition: .18s ease;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      font-family: inherit;
    }

    .main-menu a:hover,
    .main-menu button:hover {
      color: var(--yellow);
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.06);
      color: #fff;
      font-size: 20px;
      cursor: pointer;
    }

  .hero {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 120px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

    .top-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 22px;
    }

    .title-wrap h1 {
      margin: 0;
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: .95;
      font-weight: 800;
    }

    .title-wrap p {
      margin: 14px 0 0;
      max-width: 720px;
      color: rgba(255,255,255,.92);
      font-size: clamp(1rem, 2vw, 1.1rem);
      line-height: 1.45;
    }

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

    .round-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.05);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      backdrop-filter: blur(6px);
      transition: .2s ease;
    }

    .round-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(243,223,18,.45);
      color: var(--yellow);
    }

  .content-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
  min-height: 0;
  flex: 1;
}

    .side-panel {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 26px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .cover-art {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 18px;
      overflow: hidden;
      background: #151515;
      box-shadow: var(--shadow);
    }

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

    .meta-card,
    .queue-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      padding: 16px;
    }

    .meta-label {
      color: var(--yellow);
      font-size: 12px;
      letter-spacing: 1px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .song-title {
      margin: 0;
      font-size: 1.4rem;
      font-weight: 800;
      line-height: 1.1;
    }

    .song-artist {
      margin-top: 6px;
      color: rgba(255,255,255,.82);
      font-size: 1rem;
    }

    .queue-card ul {
      margin: 10px 0 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .queue-card li {
      padding: 10px 12px;
      border-radius: 12px;
      background: rgba(255,255,255,.04);
      color: rgba(255,255,255,.88);
      font-size: 14px;
    }

  .video-stage {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

    .stage-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 18px 18px 14px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
    }

    .stage-title {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .stage-title strong {
      font-size: 1.05rem;
    }

    .stage-title span {
      color: rgba(255,255,255,.68);
      font-size: 13px;
    }

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

    .pill-btn {
      height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.04);
      color: #fff;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
      transition: .2s ease;
    }

    .pill-btn:hover {
      border-color: rgba(243,223,18,.35);
      color: var(--yellow);
      transform: translateY(-1px);
    }

    .pill-btn.primary {
      background: var(--yellow);
      color: #111;
      border-color: transparent;
    }

.video-frame-wrap {
  position: relative;
  background: #000;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  max-height: 70vh;
  overflow: hidden;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  touch-action: pan-y;
}

  #player {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  min-height: 320px;
}

#player iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
}


    .status-bar {
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 18px;
      border-top: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, var(--red-2), var(--red));
      flex-wrap: wrap;
    }

  .bottom-player {
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  width: 100%;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  border-top: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 -8px 30px rgba(0,0,0,.28);
}

    .bottom-inner {
      width: min(1280px, 100%);
      margin: 0 auto;
      min-height: 76px;
      display: grid;
      grid-template-columns: 260px 160px 1fr 260px;
      align-items: center;
    }

    .station-card {
      height: 76px;
      display: grid;
      grid-template-columns: 54px 1fr;
      align-items: center;
      gap: 12px;
      padding: 0 14px;
      border-right: 1px solid rgba(0,0,0,.22);
    }

    .station-thumb {
      width: 54px;
      height: 54px;
      overflow: hidden;
      border-radius: 10px;
      background: #000;
    }

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

    .station-copy small {
      display: block;
      text-transform: uppercase;
      font-size: 10px;
      letter-spacing: 1px;
      color: rgba(255,255,255,.74);
      margin-bottom: 3px;
    }

    .station-copy strong {
      display: block;
      font-size: 14px;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .center-controls {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-right: 1px solid rgba(0,0,0,.22);
      padding: 0 12px;
    }

    .mini-btn,
    .mini-play {
      border: none;
      cursor: pointer;
      transition: .2s ease;
    }

    .mini-btn:hover,
    .mini-play:hover {
      transform: translateY(-1px);
    }

    .mini-play {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #fff;
      color: var(--red);
      font-size: 22px;
      font-weight: 700;
    }

    .mini-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      color: #fff;
      font-size: 18px;
    }

    .track-area {
      padding: 0 18px;
      min-width: 0;
    }

    .bottom-title {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 16px;
      color: #fff;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .bottom-subtitle {
      color: rgba(255,255,255,.78);
      font-size: 13px;
      margin-bottom: 10px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .bottom-progress {
      position: relative;
      height: 6px;
      border-radius: 999px;
      background: rgba(60,0,0,.55);
      overflow: hidden;
    }

    .bottom-progress > span {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 36%;
      background: var(--yellow);
      border-radius: 999px;
      transition: width .25s ease;
    }

    .bottom-actions {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      padding: 0 16px;
      border-left: 1px solid rgba(0,0,0,.22);
    }

    .icon-lite {
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      color: #f1dfe0;
      cursor: pointer;
      font-size: 17px;
      transition: .2s ease;
    }

    .icon-lite:hover {
      transform: translateY(-1px);
      color: var(--yellow);
    }

    .volume-inline {
      width: 110px;
      accent-color: #fff;
    }

.status-left {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .status-left strong {
      font-size: 15px;
    }

    .status-left span {
      font-size: 13px;
      color: rgba(255,255,255,.84);
    }

    .status-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .mini-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      border: 1px solid rgba(255,255,255,.10);
    }

    .mini-chip.live {
      color: var(--yellow);
    }

    @media (max-width: 980px) {
  .content-shell {
    grid-template-columns: 1fr;
  }

      .side-panel {
        order: 2;
      }

      .video-stage {
        order: 1;
      }
    }

    @media (max-width: 860px) {
      .top-nav-inner {
        width: min(100%, calc(100% - 24px));
        align-items: flex-start;
      }

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

      .main-menu {
        position: absolute;
        top: 58px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px;
        border-radius: 16px;
        background: rgba(10,10,14,.96);
        border: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 18px 40px rgba(0,0,0,.35);
        backdrop-filter: blur(10px);
      }

      .main-menu.open {
        display: flex;
      }

      .main-menu a,
      .main-menu button {
        width: 100%;
        padding: 12px 10px;
        border-radius: 10px;
        text-align: left;
      }
    }

    @media (max-width: 980px) {
      .bottom-inner {
        grid-template-columns: 220px 150px 1fr 220px;
      }
    }

    @media (max-width: 760px) {
      .bottom-player {
        position: relative;
      }

      .bottom-inner {
        grid-template-columns: 1fr;
      }

      .station-card,
      .center-controls,
      .bottom-actions {
        border: none;
      }

      .station-card {
        padding: 12px 14px 0;
      }

      .center-controls {
        height: auto;
        padding: 10px 0 8px;
      }

      .track-area {
        padding: 0 14px 12px;
      }

      .bottom-actions {
        justify-content: center;
        padding: 0 0 14px;
      }
    }

    @media (max-width: 760px) {
      html, body {
        overflow: auto;
      }

      .hero {
        width: min(100%, calc(100% - 24px));
      }

      .top-row {
        flex-direction: column;
      }

      .video-actions {
        width: 100%;
      }

      .pill-btn {
        flex: 1 1 auto;
        justify-content: center;
      }

      .side-panel {
        padding: 18px;
      }
    }

@media (max-width: 980px) {
  .bottom-inner {
    grid-template-columns: 220px 150px 1fr 220px;
  }
}

@media (max-width: 760px) {
  html, body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .hero {
    width: min(100%, calc(100% - 24px));
    padding-bottom: 24px;
  }

  .top-row {
    flex-direction: column;
  }

  .video-actions {
    width: 100%;
  }

  .pill-btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .side-panel {
    padding: 18px;
  }

  .bottom-player {
    position: relative;
  }

  .bottom-inner {
    grid-template-columns: 1fr;
  }

  .station-card,
  .center-controls,
  .bottom-actions {
    border: none;
  }

  .station-card {
    padding: 12px 14px 0;
  }

  .center-controls {
    height: auto;
    padding: 10px 0 8px;
  }

  .track-area {
    padding: 0 14px 12px;
  }

  .bottom-actions {
    justify-content: center;
    padding: 0 0 14px;
  }

  .video-frame-wrap,
  #player {
    min-height: 220px;
    max-height: none;
  }
}

/* ===== v1.1 UX real ===== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp .7s ease forwards;
}

.reveal-delay-1 { animation-delay: .08s; }
.reveal-delay-2 { animation-delay: .18s; }
.reveal-delay-3 { animation-delay: .28s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-stage,
.side-panel,
.meta-card,
.queue-card,
.bottom-player,
.cover-art,
.pill-btn,
.round-btn,
.icon-lite,
.mini-btn,
.mini-play {
  transition:
    transform .28s ease,
    opacity .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    filter .28s ease;
}

.video-frame-wrap {
  position: relative;
  isolation: isolate;
}

#player {
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .45s ease, transform .45s ease;
}

.video-frame-wrap.ready #player {
  opacity: 1;
  transform: scale(1);
}

.player-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 4;
  background:
    radial-gradient(circle at center, rgba(157,18,23,.24), transparent 35%),
    linear-gradient(180deg, rgba(8,8,10,.45), rgba(8,8,10,.72));
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.video-frame-wrap.loading .player-loader {
  opacity: 1;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--yellow);
  animation: spinRing 1s linear infinite;
}

.loader-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  color: rgba(255,255,255,.92);
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.player-shimmer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.05) 40%,
    rgba(255,255,255,.13) 50%,
    rgba(255,255,255,.05) 60%,
    rgba(255,255,255,0) 100%
  );
  background-size: 220% 100%;
  transition: opacity .25s ease;
}

.video-frame-wrap.loading .player-shimmer {
  opacity: 1;
  animation: shimmerMove 1.25s linear infinite;
}

@keyframes shimmerMove {
  from { background-position: 200% 0; }
  to { background-position: -40% 0; }
}

.track-flash {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(243,223,18,.12), transparent 45%);
  opacity: 0;
}

.track-flash.active {
  animation: trackFlash .45s ease;
}

@keyframes trackFlash {
  0% { opacity: 0; }
  35% { opacity: 1; }
  100% { opacity: 0; }
}

.track-swap {
  position: relative;
}

.track-swap.changing {
  animation: metaSwap .35s ease;
}

@keyframes metaSwap {
  0% {
    opacity: .55;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.pulse-art img {
  transition: transform 1.2s ease, filter .35s ease;
}

.pulse-art.playing img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.bottom-progress {
  overflow: hidden;
}

.bottom-progress > span {
  width: 0%;
  transition: width .35s linear;
  box-shadow: 0 0 18px rgba(243,223,18,.45);
}

.queue-card li {
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.queue-card li:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.video-stage:hover,
.side-panel:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
}

.pill-btn.primary:hover {
  filter: brightness(1.02);
  transform: translateY(-1px) scale(1.01);
}

/* Clean mode */
.clean-red-bar{position:fixed;left:0;right:0;bottom:0;height:8px;background:linear-gradient(90deg,#7b0f14,#9d1217,#d21f28,#9d1217,#7b0f14);box-shadow:0 -10px 28px rgba(157,18,23,.45);opacity:0;pointer-events:none;transform:translateY(100%);transition:opacity .55s ease, transform .55s ease;z-index:160;}
body.clean-mode .clean-red-bar{opacity:1;transform:translateY(0);}
body.clean-mode{background:#07070a !important;}
body.clean-mode .player-page::before{background:linear-gradient(90deg, rgba(7,7,10,.96) 0%, rgba(7,7,10,.72) 35%, rgba(7,7,10,.96) 100%);}
body.clean-mode .top-nav,
body.clean-mode .top-row,
body.clean-mode .bottom-player,
body.clean-mode .player-footer,
body.clean-mode .hero > section,
body.clean-mode .stage-top{opacity:0;transform:translateX(120px);pointer-events:none;transition:opacity .55s ease, transform .7s ease;max-height:0 !important;overflow:hidden !important;margin:0 !important;padding-top:0 !important;padding-bottom:0 !important;border:0 !important;}
body.clean-mode .side-panel{display:none !important;}
body.clean-mode .hero{width:min(100vw, 1800px);padding:0 0 40px;display:flex;align-items:center;justify-content:center;min-height:100vh;}
body.clean-mode .content-shell{display:flex !important;align-items:center;justify-content:center;grid-template-columns:1fr;gap:0;min-height:100vh;width:100%;padding:0 !important;margin:0 auto !important;}
body.clean-mode .content-shell > *{flex:0 0 auto;}
body.clean-mode .video-stage{width:min(90vw, 1560px);max-width:min(90vw, 1560px);margin:0 auto !important;background:transparent;border:none;box-shadow:none;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:0 !important;}
body.clean-mode .video-frame-wrap{margin:0 auto;aspect-ratio:16/9;min-height:auto;max-height:80vh;border-radius:28px;overflow:hidden;box-shadow:0 28px 90px rgba(0,0,0,.55);border:1px solid rgba(255,255,255,.08);}
body.clean-mode .karaoke-underbar{display:flex !important;width:min(78vw, 980px);margin:16px auto 0;align-items:center;justify-content:space-between;gap:16px;padding:14px 18px;border-radius:22px;border:1px solid rgba(255,255,255,.16);background:linear-gradient(180deg, rgba(96,96,104,.30), rgba(44,44,48,.46));box-shadow:0 18px 42px rgba(0,0,0,.34);backdrop-filter:blur(12px);opacity:1;transform:translateX(0);transition:opacity .55s ease, transform .55s ease;}
body.clean-mode .karaoke-underbar-copy small{color:#f3df12;}
body.clean-mode .karaoke-underbar-copy strong{font-size:1.3rem;}
body.clean-mode .karaoke-underbar-copy span{font-size:15px;color:rgba(255,255,255,.88);}
body.clean-mode .karaoke-underbar-time{background:rgba(243,223,18,.14);border-color:rgba(243,223,18,.28);}
body.clean-mode #player, body.clean-mode .video-frame-wrap iframe, body.clean-mode .video-frame-wrap video{height:100% !important;}
@media (max-width: 900px){body.clean-mode .video-stage{width:100%;} body.clean-mode .video-frame-wrap{width:min(96vw, 1100px);border-radius:18px;max-height:none;} body.clean-mode .karaoke-underbar{width:min(94vw, 860px);border-radius:18px;}}

body.clean-mode .video-stage.reveal,
body.clean-mode .video-stage{transform:none !important;left:auto !important;right:auto !important;}
body.clean-mode .video-frame-wrap{width:min(90vw, 1560px);margin-left:auto !important;margin-right:auto !important;}
body.clean-mode .karaoke-underbar{margin-left:auto !important;margin-right:auto !important;}


/* v10 karaoke clean banner readability */
body.clean-mode .karaoke-underbar{
  width:min(92vw, 1320px) !important;
  margin:18px auto 0 !important;
  padding:20px 26px !important;
  gap:24px !important;
  display:grid !important;
  grid-template-columns:180px 1fr;
  align-items:center;
}
body.clean-mode .karaoke-underbar-time{
  order:-1;
  min-width:0;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 14px !important;
  border-radius:22px;
  font-size:3rem !important;
  font-weight:900;
  letter-spacing:1px;
  line-height:1;
  color:var(--yellow);
  background:rgba(243,223,18,.12);
  border:1px solid rgba(243,223,18,.26);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}
body.clean-mode .karaoke-underbar-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:6px;
}
body.clean-mode .karaoke-underbar-copy small{
  font-size:1.15rem !important;
  letter-spacing:1.8px;
  text-transform:uppercase;
  font-weight:900;
  color:var(--yellow);
}
body.clean-mode .karaoke-underbar-copy strong{
  display:block;
  font-size:clamp(2.2rem, 4.3vw, 4.2rem) !important;
  line-height:1.02;
  font-weight:900;
  text-transform:uppercase;
  text-wrap:balance;
}
body.clean-mode .karaoke-underbar-copy span{
  display:block;
  font-size:clamp(1.25rem, 2.2vw, 2.35rem) !important;
  line-height:1.08;
  color:rgba(255,255,255,.96) !important;
  text-wrap:balance;
}
@media (max-width: 900px){
  body.clean-mode .karaoke-underbar{grid-template-columns:120px 1fr !important;padding:16px 18px !important;gap:16px !important;width:min(96vw, 980px) !important;}
  body.clean-mode .karaoke-underbar-time{font-size:2rem !important;padding:14px 10px !important;border-radius:18px;}
  body.clean-mode .karaoke-underbar-copy small{font-size:.85rem !important;}
  body.clean-mode .karaoke-underbar-copy strong{font-size:clamp(1.35rem, 4vw, 2.2rem) !important;}
  body.clean-mode .karaoke-underbar-copy span{font-size:clamp(1rem, 2.8vw, 1.5rem) !important;}
}


/* v11 clean banner tuning */
body.clean-mode .karaoke-underbar{grid-template-columns:130px 1fr !important;align-items:center !important;padding:14px 18px !important;gap:20px !important;width:min(86vw, 1080px) !important;}
body.clean-mode .karaoke-underbar-time{order:0;min-width:130px !important;font-size:2.05rem !important;padding:16px 12px !important;justify-self:start !important;}
body.clean-mode .karaoke-underbar-copy{order:1;gap:4px !important;}
body.clean-mode .karaoke-underbar-copy small{font-size:1rem !important;letter-spacing:1.6px !important;}
body.clean-mode .karaoke-underbar-copy strong{font-size:clamp(1.9rem, 4vw, 3.1rem) !important;line-height:1.02 !important;font-weight:900 !important;}
body.clean-mode .karaoke-underbar-copy .karaoke-name{color:#f3df12;display:inline-block;margin-left:.3em;}
body.clean-mode .karaoke-underbar-copy span{font-size:clamp(1.05rem, 2vw, 1.45rem) !important;color:rgba(255,255,255,.86) !important;line-height:1.15 !important;}
@media (max-width:900px){
  body.clean-mode .karaoke-underbar{grid-template-columns:110px 1fr !important;width:min(94vw, 980px) !important;}
  body.clean-mode .karaoke-underbar-time{font-size:1.7rem !important;min-width:110px !important;}
  body.clean-mode .karaoke-underbar-copy strong{font-size:clamp(1.35rem, 5vw, 2.2rem) !important;}
  body.clean-mode .karaoke-underbar-copy span{font-size:clamp(.95rem, 3vw, 1.2rem) !important;}
}


/* v12 singer priority */
body.clean-mode .karaoke-underbar-copy strong{
  display:flex !important;
  flex-wrap:wrap;
  align-items:baseline;
  gap:.35em;
}
body.clean-mode .karaoke-underbar-copy .karaoke-name{
  font-size:1.28em !important;
  font-weight:900 !important;
  color:#ffe55c !important;
  letter-spacing:.02em !important;
}
body.clean-mode .karaoke-underbar-copy span{
  font-size:clamp(.92rem, 1.55vw, 1.18rem) !important;
  color:rgba(255,255,255,.8) !important;
}
