@font-face {
  font-family: "Alibaba PuHuiTi 2.0";
  src: url("https://db.onlinewebfonts.com/t/70e85e06a6ea3fbd5e4030df68874fff.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

body,
.catalog-app,
button,
input,
textarea,
select {
  font-family: "Alibaba PuHuiTi 2.0", "Alibaba PuHuiTi", Arial, sans-serif;
  font-style: normal;
}

.catalog-app * {
  font-family: inherit;
}

.hero-copy h1,
.contact-section h2,
.detail-copy h2 {
  font-family: "Alibaba PuHuiTi 2.0", "Alibaba PuHuiTi", Arial, sans-serif;
  font-style: normal;
}

.hero-copy h1 em,
.contact-section h2 em {
  font-family: "Didactica Ductus", "Didactica", "Segoe Print", cursive;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.035em;
}

.ui-icon {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-icon-fill {
  fill: currentColor;
  stroke: none;
}

.player-buttons {
  gap: 12px;
}

.player-buttons button {
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255,255,255,.045);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.player-buttons button:hover {
  transform: translateY(-1px);
  border-color: rgba(255,118,149,.65);
  background: rgba(255,118,149,.12);
}

.player-buttons button .ui-icon {
  width: 17px;
  height: 17px;
}

.player-buttons .main-play {
  width: 46px;
  height: 46px;
  border: 0;
  color: #fff;
  background: linear-gradient(145deg,#ff7695,#d93265);
  box-shadow: 0 8px 24px rgba(217,50,101,.3);
}

.player-buttons .main-play:hover {
  background: linear-gradient(145deg,#ff89a3,#e33c70);
}

.player-buttons .main-play .ui-icon {
  width: 20px;
  height: 20px;
}

.more-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.more-button .detail-icon {
  width: 30px;
  height: 30px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #ff7695;
  background: rgba(255,255,255,.035);
  transition: transform .18s ease, background .18s ease;
}

.more-button:hover .detail-icon {
  transform: translate(1px,-1px);
  background: var(--accent-soft);
}

.more-button .detail-icon .ui-icon {
  width: 15px;
  height: 15px;
}

.contact-details a {
  min-width: 0;
}

.contact-details a > span:last-child {
  width: auto;
  height: auto;
  min-width: 0;
  display: grid;
  gap: 2px;
  place-items: initial;
  border: 0;
  border-radius: 0;
  color: inherit;
}

.contact-details small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-details b {
  overflow-wrap: anywhere;
}

.catalog-player {
  min-height: 108px;
}

.player-current img {
  width: 62px;
  height: 62px;
  border-radius: 9px;
}

.player-current b {
  font-size: 15px;
}

.player-current span {
  font-size: 12px;
}

.lyrics-trigger {
  width: 30px;
  height: 30px;
  margin-left: 2px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.lyrics-trigger:hover {
  color: #ff7695;
  border-color: rgba(255,118,149,.65);
  background: var(--accent-soft);
}

.lyrics-trigger .ui-icon {
  width: 16px;
  height: 16px;
}

.button-icon {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  margin-right: 5px;
  vertical-align: -3px;
}

.button-icon .ui-icon {
  width: 15px;
  height: 15px;
}

.lyrics-overlay {
  padding: 0;
  background: rgba(8, 7, 11, .76);
}

.lyrics-panel {
  width: min(980px, 100%);
  height: min(820px, 100%);
  display: block;
  overflow: hidden;
  border-color: rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 77, 118, .24), transparent 45%),
    rgba(18, 16, 23, .82);
  backdrop-filter: blur(28px);
}

.lyrics-view {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px clamp(22px, 5vw, 64px) 18px;
}

.lyrics-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 35px;
}

.lyrics-top img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.lyrics-top div {
  display: grid;
  gap: 3px;
}

.lyrics-top b {
  font-size: 18px;
}

.lyrics-top span {
  color: var(--muted);
  font-size: 12px;
}

.lyrics-scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 40px 8px 100px;
  scrollbar-width: none;
  overscroll-behavior: contain;
}

.lyrics-scroll::-webkit-scrollbar {
  display: none;
}

.lyric-line {
  max-width: 760px;
  margin: 0 auto;
  padding: 9px 0;
  color: rgba(246,243,239,.28);
  text-align: center;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  filter: blur(1.8px);
  opacity: .5;
  transform: scale(.98);
  transition: color .3s ease, filter .3s ease, opacity .3s ease, transform .3s ease;
}

.lyric-line.active {
  color: #fff;
  filter: none;
  opacity: 1;
  transform: scale(1.015);
}

.lyric-line.active + .lyric-line {
  color: rgba(246,243,239,.63);
  filter: blur(.7px);
  opacity: .8;
}

html[data-theme="light"] .lyrics-panel {
  background:
    radial-gradient(circle at 50% -10%, rgba(216,43,88,.18), transparent 45%),
    rgba(255,255,255,.9);
}

html[data-theme="light"] .lyric-line {
  color: rgba(30,28,32,.25);
}

html[data-theme="light"] .lyric-line.active {
  color: #1e1c20;
}

@media (max-width:720px) {
  .lyrics-panel {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .lyrics-view {
    padding: 26px 18px 10px;
  }

  .lyrics-top img {
    width: 50px;
    height: 50px;
  }

  .lyrics-top b {
    font-size: 16px;
  }

  .lyrics-top span {
    font-size: 11px;
  }

  .lyrics-scroll {
    padding: 35px 3px 100px;
  }

  .lyric-line {
    padding: 8px 0;
    font-size: clamp(21px, 6vw, 30px);
  }
}

@media (max-width:720px) {
  .more-button .detail-icon {
    width: 34px;
    height: 34px;
  }

  .more-button .detail-icon .ui-icon {
    width: 17px;
    height: 17px;
  }

  .catalog-player {
    height: 132px;
    min-height: 132px;
    grid-template-rows: 52px 58px;
  }

  .player-current img {
    width: 48px;
    height: 48px;
  }

  .player-current b {
    font-size: 14px;
  }

  .player-current span {
    max-width: 230px;
    font-size: 11px;
  }

  .player-buttons {
    gap: 15px;
  }

  .player-buttons button {
    width: 36px;
    height: 36px;
  }

  .player-buttons .main-play {
    width: 44px;
    height: 44px;
  }

  .progress-row {
    grid-template-columns: 39px 1fr 39px;
  }
}

/* karaoke-json-catalog */
.karaoke-word{display:inline-block;color:rgba(255,255,255,.28);filter:blur(.35px);transition:color .12s ease,filter .12s ease,text-shadow .12s ease}.karaoke-word.is-sung,.karaoke-word.is-active{color:#fff;filter:none}.karaoke-word.is-active{color:#ff7695;text-shadow:0 0 18px rgba(255,118,149,.35)}.lyric-line.active .karaoke-word:not(.is-sung):not(.is-active){color:rgba(255,255,255,.48);filter:none}.lyrics-top{gap:14px}.lyrics-top>div{flex:1;min-width:0}.lyrics-like,.lyrics-play{width:42px;height:42px;border:1px solid var(--line);border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.06);color:var(--text);font-size:24px;cursor:pointer}.lyrics-like.liked{color:#ff476f}.lyrics-play{background:linear-gradient(145deg,#ff7695,#d93265);color:#fff;border:0}.lyrics-play .ui-icon{width:19px;height:19px}.lyrics-volume{display:flex;align-items:center;gap:7px;color:var(--muted)}.lyrics-volume input{width:90px;accent-color:#ff7695}
