/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 08 2026 | 08:03:34 */
.lyrics-az-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.lyrics-az-filter button {
  padding: 6px 12px;
  border-radius: 14px;
  border: 1px solid #9676c1;
  background: transparent;
  color: #9676c1;
  cursor: pointer;
  font-weight: 600;
}

.lyrics-az-filter button.active {
  background: #9676c1;
  color: #fff;
}

.lyrics-item {
  position: relative;
  padding: 12px 0;
}

/* divider ultra-tipis */
.lyrics-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: .0;              /* INI KUNCINYA: hampir invisible */
  transform: translateZ(0);   /* cegah blur rendering */
  pointer-events: none;
}
.lyrics-item.hidden {
  display: none !important;
}


.lyrics-title {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 2;
  background: inherit;
}

.song-name {
  font-size: 1.2em;
  font-weight: 700;
}

.toggle {
  font-size: 1.5em;
}

.lyrics-content {
  max-height: 0;
  overflow: hidden;
  transition: 
    max-height .45s cubic-bezier(.4,0,.2,1),
    opacity .25s ease;
  opacity: 0;
  will-change: max-height, opacity;
}

.lyrics-item.active .lyrics-content {
  opacity: 1;
}

.read-lyrics-btn {
  display: inline-block;
  padding: 7px 14px;
  background: #9676c1;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
}

.lyrics-item {
  position: relative;
  overflow: hidden;
}

/* ===== LYRICS LANGUAGE BADGES (CSS ONLY) ===== */

.lyrics-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

/* ===== BADGE GROUP LABEL (NON-INTRUSIVE) ===== */

.lyrics-lang {
  position: relative;
}

/* prefix "Language" */
.lyrics-lang::before {
  content: "Language";
  font-size: 0.75em;
  font-weight: 600;
  color: var(--pc-body-color);
  margin-right: 8px;
  align-self: center;
}
/* BASE BADGE */
.lyrics-lang span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 0.75em;
  font-weight: 600;
  border-radius: 999px;
  line-height: 1.6;
  white-space: nowrap;
  animation: badgeFade .4s ease both;
}

/* FADE IN */
@keyframes badgeFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== INDONESIAN ===== */
.lang-id::before {
  content: "Bahasa Indonesia";
}

.lang-id {
  background: rgba(182,163,217,.18);
  color: #B6A3D9;
}

/* ===== JAPANESE KANJI ===== */
.lang-jp-kanji::before {
  content: "Japanese (漢字)";
}

.lang-jp-kanji {
  background: rgba(127, 198, 184,.18);
  color: #7FC6B8;
  animation: badgePulse 2.5s infinite;
}

/* ===== JAPANESE ROMAJI ===== */
.lang-jp-romaji::before {
  content: "Japanese (Romaji)";
}

.lang-jp-romaji {
  background: rgba(120,200,255,.18);
  color: #78c8ff;
}

/* ===== ENGLISH ===== */
.lang-en::before {
  content: "English";
}

.lang-en {
  background: rgba(241, 172, 209, .18);
  color: #C98FAE;
}

/* SUBTLE PULSE (KANJI ONLY) */
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 rgba(255,120,120,0); }
  50% { box-shadow: 0 0 8px rgba(255,120,120,.4); }
}