*,
*::before,
*::after {
  box-sizing: border-box;
}

body.lyrics-page {
  margin: 0;
  /*font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;*/
  background: #f4f5fb;
  color: #0f172a;
  font-size: 15px; /* เดิมไม่ได้กำหนด */
  font-family: 'Sarabun', 'Noto Sans Thai', sans-serif;
}

/* Header */
.lp-header {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.lp-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-logo-icon {
  font-size: 20px;
}

.lp-logo-text {
  font-weight: 600;
  font-size: 24px;
  color: #0f172a;
  text-decoration: none;
}

.lp-nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.lp-nav a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
}

.lp-nav a:hover {
  color: #7c3aed;
}

/* Hamburger Menu Button */
.lp-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.lp-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-hamburger-line {
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.lp-menu-toggle-active .lp-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.lp-menu-toggle-active .lp-hamburger-line:nth-child(2) {
  opacity: 0;
}

.lp-menu-toggle-active .lp-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Main container */
.lp-main {
  max-width: 1120px;
  margin: 24px auto 40px auto;
  padding: 0 24px;
}

/* Breadcrumb Navigation */
.lp-breadcrumb {
  margin-bottom: 20px;
}

.lp-breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-breadcrumb-separator {
  color: #94a3b8;
  flex-shrink: 0;
}

.lp-breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lp-breadcrumb-link:hover {
  color: #0ea5e9;
}

.lp-breadcrumb-link svg {
  flex-shrink: 0;
}

.lp-breadcrumb-current {
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

/* Hero */
.lp-hero {
  border-radius: 32px;
  background: linear-gradient(90deg, #7c3aed 0%, #ec4899 100%);
  color: #ffffff;
  padding: 24px 30px;
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.35);
  margin-bottom: 24px;
}

.lp-hero-small {
  padding-top: 32px;
  padding-bottom: 32px;
}

.lp-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-hero-text h1 {
  margin: 0 0 4px 0;
  font-size: 26px;  /* เดิม 24px */
  font-weight: 700;
}

.lp-hero-text p {
  margin: 0;
  font-size: 15px;  /* เดิม 14px */
  color: #e5e7eb;
}

.lp-hero-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-hero-search input {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 16px;
  font-size: 13px;
  outline: none;
  color: #0f172a;
}

.lp-hero-search button {
  border-radius: 999px;
  border: none;
  background: #020617;
  color: #ffffff;
  font-size: 13px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

/* Latest songs list */
.lp-latest-section {
  margin-top: 24px;
}

.lp-latest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.lp-latest-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.lp-badge-new {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 700;
}

.lp-search-label {
  font-size: 11px;
  color: #6b7280;
}

.lp-pager {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lp-pager-btn {
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 6px 10px;
  color: #6b7280;
  text-decoration: none;
}

.lp-pager-btn:hover {
  border-color: #7c3aed;
  color: #4b5563;
}

.lp-pager-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* songs table card */
.lp-latest-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.lp-latest-header-row {
  display: grid;
  /* # | Title | Genre | Time */
  grid-template-columns: 40px minmax(0, 2.4fr) 120px 60px;
  padding: 10px 24px;
  font-size: 14px;
  color: #94a3b8;
  border-bottom: 1px solid #e5e7eb;
}
.lp-col-index {
  text-align: left;
}

.lp-col-title {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-col-artist {
  text-align: left;
}

.lp-col-genre {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;        /* ⭐ อนุญาตให้ขึ้นบรรทัดใหม่ */
  gap: 4px;
  min-width: 0;           /* ⭐ ป้องกันล้น */
}

.lp-col-duration {
  text-align: right;
}

.lp-latest-list {
  border-bottom: 1px solid #e5e7eb;
}

.lp-latest-list .lp-song-row:last-child {
  border-bottom: none;
}

.lp-song-row {
  display: grid;
  /* # | Title+Artist | Genre | Time */
  grid-template-columns: 40px minmax(0, 2.4fr) 120px 60px;
  padding: 12px 24px;
  font-size: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #e5e7eb;
}

.lp-song-row:hover {
  background: #f8fafc;
}

.lp-song-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-song-title-block {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.lp-song-title {
  font-weight: 500;
  color: #0f172a;
}

.lp-song-album {
  font-size: 12px;
  color: #9ca3af;
}

.lp-genre-pill {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #22c55e;
  font-weight: 600;
  white-space: nowrap;     /* 🚫 ไม่อนุญาตให้ตัดคำ */
  max-width: 100%;        
  overflow: hidden;
  text-overflow: ellipsis; /* ⭐ ถ้าชื่อ genre ยาวมาก ใช้ ... */
}

.lp-latest-empty {
  padding: 16px 24px;
  font-size: 13px;
  color: #6b7280;
}

.lp-latest-footer {
  padding: 8px 24px;
  font-size: 14px;
  color: #6b7280;
  background: #f8fafc;
}

/* song hero + summary */
.lp-song-detail-section {
  margin-top: 24px;
}

.lp-song-detail-grid {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 24px;
  align-items: start;
}

.lp-song-hero-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  padding: 18px 20px;
}

/* Apple Music Embed */
.lp-apple-music-embed {
  position: relative;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  max-height: 250px;
}

.lp-embed-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 250px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.lp-embed-loading {
  text-align: center;
}

.lp-embed-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  animation: pulse 2s ease-in-out infinite;
}

.lp-embed-loading p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.lp-song-hero-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-song-hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 28px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.lp-song-hero-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.lp-song-hero-artist {
  font-size: 20px;
  color: #6b7280;
  font-weight: 600;
}

.lp-song-hero-suffix {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 4px;
}

.lp-song-hero-meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lp-pill {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #4b5563;
}

.lp-song-hero-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.lp-ctrl-btn {
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f9fafb;
  color: #374151;
  padding: 8px 14px;
  font-size: 12px;
  cursor: pointer;
}

/* summary + mood layout */
.lp-song-summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 16px;
  margin-top: 16px;
}

.lp-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  padding: 18px 20px;
}

.lp-card h2 {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.lp-lyrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lp-lyrics-header h2 {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.lp-lyrics-header .lp-song-hero-controls {
  flex-shrink: 0;
}

.lp-card h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
}

.lp-card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-card-header-row h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.lp-card-subtitle {
  margin: 6px 0 8px 0;
  font-size: 12px;
  color: #6b7280;
}

.lp-summary-text {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  white-space: pre-wrap;
}

.lp-mood-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  font-size: 13px;
}

.lp-mood-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: #4b5563;
}

/* tags */
.lp-tags-section {
  margin-top: 16px;
}

.lp-tags-heading {
  margin: 12px 0 6px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.lp-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lp-tag-pill {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #4b5563;
}

/* line-by-line table */
.lp-lyrics-section {
  margin-top: 24px;
}

.lp-line-table {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  margin-top: 12px;
}

.lp-line-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f9fafb;
  font-size: 13px;
  color: #6b7280;
  padding: 8px 12px;
  font-weight: 600;
}

.lp-line-table-body {
  max-height: 600px;
  overflow-y: auto;
}

.lp-line-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 14px;
  border-top: 1px solid #f3f4f6;
}

.lp-line-original-cell {
  padding: 6px 12px;
  /*white-space: pre-wrap;*/
}

.lp-line-original {
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  font-size: 18px;
}

.lp-line-romanized {
  color: #9ca3af;
  font-size: 14px;
  font-style: italic;
  margin-top: 4px;
  line-height: 1.5;
}

.lp-line-translated {
  padding: 6px 12px;
  white-space: pre-wrap;
  color: #6b7280;
  font-size: 16px;
}

/* ซ่อน romanized เมื่อ toggle off */
.romanized-text.hidden {
  display: none;
}


/* footer */
.lp-footer {
  background: #020617;
  color: #e5e7eb;
  margin-top: 40px;
  padding: 24px 24px 16px 24px;
}

.lp-footer-inner {
  max-width: 1120px;
  margin: 0 auto 8px auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.lp-footer-col h3,
.lp-footer-col h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
}

.lp-footer-col p,
.lp-footer-col ul {
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

.lp-footer-col ul {
  list-style: none;
  padding: 0;
}

.lp-footer-col li {
  margin-bottom: 4px;
}

.lp-footer-col a {
  color: #9ca3af;
  text-decoration: none;
}

.lp-footer-col a:hover {
  color: #e5e7eb;
}

.lp-footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid #1f2937;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  color: #9ca3af;
}

.lp-footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  /* Mobile Header & Menu */
  .lp-header-inner {
    position: relative;
  }

  .lp-menu-toggle {
    display: block;
  }

  .lp-nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 60px);
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    box-shadow: -4px 0 12px rgba(15, 23, 42, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .lp-nav.lp-nav-open {
    right: 0;
  }

  .lp-nav a {
    padding: 16px 24px;
    font-size: 16px;
    border-bottom: 1px solid #f1f5f9;
  }

  .lp-nav a:hover {
    background: #f8fafc;
  }

  .lp-hero-inner {
    align-items: flex-start;
  }

  .lp-breadcrumb {
    margin-bottom: 16px;
  }

  .lp-breadcrumb-list {
    gap: 6px;
  }

  .lp-breadcrumb-link,
  .lp-breadcrumb-current {
    font-size: 13px;
  }

  .lp-breadcrumb-link span {
    display: none;
  }

  .lp-breadcrumb-current {
    max-width: 200px;
  }

  .lp-song-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-song-summary-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .lp-latest-header-row,
  .lp-song-row {
    grid-template-columns: 32px minmax(0, 2fr) minmax(0, 1.2fr);
  }

  .lp-col-duration, .lp-song-avatar, .lp-song-hero-avatar {
    display: none;
  }

  /* ซ่อนหัวตาราง */
  .lp-line-table-header {
    display: none;
  }

  /* ตัดเหลือคอลัมน์เดียว */
  .lp-line-row {
    grid-template-columns: 1fr;
    padding: 10px 12px;
  }

  /* บรรทัดต้นฉบับ */
  .lp-line-original {
    font-size: 16px;
    line-height: 1.55;
    padding-bottom: 4px;
  }

  /* บรรทัด romanized → ตกลงใต้ต้นฉบับ */
  .lp-line-romanized {
    margin-top: 2px;
    padding-top: 0;
    font-size: 13px;
    color: #9ca3af;
    font-style: italic;
    line-height: 1.5;
    padding-bottom: 4px;
  }

  /* บรรทัดคำแปล → ตกลงด้านล่าง */
  .lp-line-translated {
    margin-top: 2px;
    padding-top: 0;
    font-size: 14px;
    color: #64748b; /* เทาอ่อน */
    line-height: 1.55;
  }

  /* section เช่น [Verse 1] ให้เดี่ยวเต็มบรรทัด */
  .lp-line-section-row {
    grid-template-columns: 1fr;
    padding: 12px 12px 6px 12px;
    background: #f9fafb;
  }

  .lp-line-section-label {
    font-size: 13px;
    color: #6b7280;
  }

  .lp-lyrics-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lp-lyrics-header h2 {
    font-size: 18px;
    min-width: auto;
  }

  .lp-lyrics-header .lp-song-hero-controls {
    width: 100%;
  }

}
.lp-line-section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 16px 8px 16px;
}

.lp-line-section-label {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: #6b7280;
}

.lp-line-section-spacer {
  /* ช่องว่างฝั่งคำแปล */
  padding: 8px 16px;
}

/* Mood score chart */
.lp-mood-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.lp-mood-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-mood-label {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 90px;
  color: #4b5563;
}

.lp-mood-emoji {
  font-size: 16px;
}

.lp-mood-name {
  font-size: 13px;
}

.lp-mood-bar-wrap {
  flex: 1;
}

.lp-mood-bar-bg {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.lp-mood-bar-fill {
  height: 100%;
  border-radius: 999px;
}

/* Happiness / ความสุข - เหลือง */
.lp-mood-bar-happy {
  background: #facc15; /* สีเหลืองสด */
}

/* Love / ความรัก - ชมพูเข้ม */
.lp-mood-bar-love {
  background: #fb7185; /* ชมพูสด */
}

/* Energy / พลังงาน - ส้ม */
.lp-mood-bar-energy {
  background: #f97316; /* ส้มโทนแรง */
}

/* Sad / ความเศร้า - ฟ้าเทา */
.lp-mood-bar-sad {
  background: #60a5fa; /* ฟ้า */
}

/* Joy - เหลืองสดใส */
.lp-mood-bar-joy {
  background: #fbbf24; /* amber 400 */
}

/* Anger - แดง */
.lp-mood-bar-anger {
  background: #ef4444; /* red 500 */
}

/* Fear - ม่วงเข้ม */
.lp-mood-bar-fear {
  background: #8b5cf6; /* violet 500 */
}

/* Surprise - ฟ้าอ่อนสด */
.lp-mood-bar-surprise {
  background: #38bdf8; /* sky 400 */
}

/* Calm - เขียวอ่อน */
.lp-mood-bar-calm {
  background: #4ade80; /* green 400 */
}

/* Nostalgia - ม่วงชมพูอบอุ่น */
.lp-mood-bar-nostalgia {
  background: #e879f9; /* fuchsia 400 */
}

/* default (ถ้าไม่มี mapping) */
.lp-mood-bar-default {
  background: #a855f7; /* purple 500 */
}

.lp-mood-score {
  width: 52px;
  text-align: right;
  font-weight: 600;
  font-size: 12px;
  color: #111827;
}

.lp-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0 0;
}

.lp-tag {
  font-size: 12px;
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 999px;
  color: #475569;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

/* Utility classes */
.hidden {
  display: none !important;
}

/* Translation column transition */
.translation-column {
  transition: opacity 0.2s ease-in-out;
}

/* Toggle button styles */
.lp-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.lp-toggle-btn .lp-btn-icon {
  font-size: 18px;
  transition: opacity 0.2s ease;
}

.lp-toggle-btn[data-active="false"] {
  opacity: 0.5;
  background: #e2e8f0;
}

.lp-toggle-btn[data-active="false"] .lp-btn-icon {
  opacity: 0.4;
}

/* Font size group */
.lp-font-size-group {
  display: flex;
  gap: 4px;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 6px;
}

.lp-font-btn {
  min-width: 40px;
  padding: 8px 12px;
  background: transparent;
  border: none;
  transition: all 0.2s ease;
}

.lp-font-btn:hover {
  background: #e2e8f0;
}

.lp-font-btn.active {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.lp-font-btn[data-size="small"] .lp-btn-text {
  font-size: 12px;
}

.lp-font-btn[data-size="medium"] .lp-btn-text {
  font-size: 14px;
}

.lp-font-btn[data-size="large"] .lp-btn-text {
  font-size: 16px;
}

/* Font size variations for lyrics */
.lp-lyrics-section.font-small .lp-line-original,
.lp-lyrics-section.font-small .lp-line-translated {
  font-size: 14px;
  line-height: 1.6;
}

.lp-lyrics-section.font-medium .lp-line-original,
.lp-lyrics-section.font-medium .lp-line-translated {
  font-size: 16px;
  line-height: 1.7;
}

.lp-lyrics-section.font-large .lp-line-original,
.lp-lyrics-section.font-large .lp-line-translated {
  font-size: 18px;
  line-height: 1.8;
}

/* ========== ARTIST PAGE ========== */

.lp-artist-section {
  margin-bottom: 32px;
}

.lp-artist-card {
  padding: 24px;
}

.lp-artist-main {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.lp-artist-avatar {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.lp-artist-name {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
}

.lp-artist-genre {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #6b7280;
  font-weight: 600;
}

.lp-artist-meta {
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

.lp-artist-body {
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

.lp-artist-body h2 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: #374151;
}

.lp-artist-bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  white-space: pre-wrap;
}

.lp-artist-songs-section {
  margin-bottom: 32px;
}

.lp-song-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 16px;
}

.lp-song-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.lp-song-item:last-child {
  border-bottom: none;
}

.lp-song-item-index {
  width: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  flex-shrink: 0;
}

.lp-song-item-content {
  flex: 1;
  min-width: 0;
}

.lp-song-item-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.lp-song-item-title:hover {
  color: #667eea;
}

.lp-song-item-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #6b7280;
}

.lp-song-item-meta span {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lp-artist-avatar {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }

  .lp-artist-name {
    font-size: 24px;
  }

  .lp-artist-main {
    gap: 16px;
  }

  .lp-song-item-index {
    width: 24px;
    font-size: 13px;
  }

  .lp-song-item-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ========================================
   Charts Page Styles
   ======================================== */

.charts-hero {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  margin-bottom: 40px;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.charts-hero-title {
  margin: 0 0 12px 0;
  font-size: 36px;
  font-weight: 700;
}

.charts-hero-subtitle {
  margin: 0;
  font-size: 18px;
  opacity: 0.95;
}

.charts-empty {
  text-align: center;
  padding: 60px 24px;
  background: white;
  border-radius: 16px;
  color: #64748b;
}

/* Charts Tabs */
.charts-tabs-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.charts-tabs-nav {
  display: flex;
  gap: 4px;
  padding: 16px;
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.charts-tabs-nav::-webkit-scrollbar {
  height: 6px;
}

.charts-tabs-nav::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.charts-tabs-nav::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.charts-tab-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.charts-tab-btn:hover {
  background: #e2e8f0;
  color: #334155;
}

.charts-tab-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.charts-tabs-content {
  padding: 24px;
}

.charts-tab-panel {
  display: none;
}

.charts-tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chart Card */
.chart-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.chart-card:hover {
  box-shadow: none;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
  margin-bottom: 16px;
}

.chart-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.chart-total {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.chart-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chart-empty {
  text-align: center;
  padding: 40px 24px;
  color: #94a3b8;
}

/* Chart Song Row */
.chart-song-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.chart-song-row:hover {
  background: #f8fafc;
  transform: translateX(4px);
}

.chart-rank {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-rank-number {
  font-size: 18px;
  font-weight: 600;
  color: #64748b;
}

.chart-rank-medal {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.chart-rank-1 {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #92400e;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.chart-rank-2 {
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
  color: #334155;
  box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
}

.chart-rank-3 {
  background: linear-gradient(135deg, #cd7f32 0%, #e6a66f 100%);
  color: #78350f;
  box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
}

.chart-song-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.chart-song-avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.chart-song-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.chart-song-title {
  font-weight: 600;
  font-size: 15px;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chart-song-artist {
  font-size: 13px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chart-song-genre {
  display: flex;
  align-items: center;
}

.chart-genre-pill {
  padding: 4px 12px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.chart-song-duration {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .charts-hero-title {
    font-size: 28px;
  }

  .charts-hero-subtitle {
    font-size: 16px;
  }

  .charts-tabs-nav {
    padding: 12px;
    gap: 8px;
  }

  .charts-tab-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .charts-tabs-content {
    padding: 16px;
  }

  .chart-title {
    font-size: 20px;
  }

  .chart-song-row {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .chart-song-genre,
  .chart-song-duration {
    display: none;
  }

  .chart-song-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .chart-rank-medal {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .chart-rank-number {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .charts-hero {
    padding: 32px 16px;
  }

  .charts-hero-title {
    font-size: 24px;
  }

  .charts-hero-subtitle {
    font-size: 14px;
  }

  .charts-tabs-nav {
    padding: 8px;
    gap: 4px;
  }

  .charts-tab-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .charts-tabs-content {
    padding: 12px;
  }

  .chart-card {
    padding: 0;
  }

  .chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .chart-title {
    font-size: 18px;
  }
}

/* Genres Page */
.genres-hero {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 24px;
  margin-bottom: 40px;
  color: white;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.genres-hero-title {
  margin: 0 0 12px 0;
  font-size: 36px;
  font-weight: 700;
}

.genres-hero-subtitle {
  margin: 0 0 12px 0;
  font-size: 18px;
  opacity: 0.95;
}

.genres-hero-count {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
  font-weight: 500;
}

.genres-empty {
  text-align: center;
  padding: 60px 24px;
  background: white;
  border-radius: 16px;
  color: #64748b;
}

/* Genres Grid */
.genres-grid-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  padding: 24px;
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* Genre Card */
.genre-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

.genre-card:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: #10b981;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.2);
}

.genre-card:hover .genre-card-title,
.genre-card:hover .genre-card-count {
  color: white;
}

.genre-card:hover .genre-card-icon svg {
  color: white;
}

.genre-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.genre-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  transition: color 0.2s ease;
}

.genre-card-count {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  transition: color 0.2s ease;
}

.genre-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  transition: all 0.2s ease;
}

.genre-card-icon svg {
  color: #10b981;
  transition: color 0.2s ease;
}

/* Responsive Design for Genres */
@media (max-width: 768px) {
  .genres-hero-title {
    font-size: 28px;
  }

  .genres-hero-subtitle {
    font-size: 16px;
  }

  .genres-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
  }

  .genres-grid-container {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .genres-hero {
    padding: 32px 16px;
  }

  .genres-hero-title {
    font-size: 24px;
  }

  .genres-hero-subtitle {
    font-size: 14px;
  }

  .genres-grid {
    grid-template-columns: 1fr;
  }

  .genres-grid-container {
    padding: 12px;
  }

  .genre-card {
    padding: 16px 20px;
  }

  .genre-card-title {
    font-size: 16px;
  }

  .genre-card-count {
    font-size: 13px;
  }
}

/* Genre Detail Page */
.genre-detail-hero {
  text-align: center;
  padding: 56px 24px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  border-radius: 24px;
  margin-bottom: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.genre-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.genre-hero-title {
  margin: 0 0 16px 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.genre-hero-description {
  margin: 0;
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.6;
}

/* Pillar Content Section */
.genre-pillar-section {
  margin-bottom: 40px;
}

.genre-pillar-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  padding: 32px;
}

.genre-pillar-headline {
  margin: 0 0 20px 0;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.genre-pillar-content p {
  margin: 0 0 16px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  transition: all 0.3s ease;
}

.genre-pillar-content p:last-child {
  margin-bottom: 0;
}

.genre-pillar-content .pillar-hidden {
  display: none;
}

.genre-read-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #0ea5e9;
  border-radius: 8px;
  color: #0ea5e9;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.genre-read-more-btn:hover {
  background: #0ea5e9;
  color: white;
}

.genre-read-more-btn .read-more-icon {
  transition: transform 0.3s ease;
}

/* Popular Songs Section */
.genre-songs-section {
  margin-bottom: 40px;
}

.genre-section-title {
  margin: 0 0 24px 0;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

.genre-songs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  padding: 16px;
}

.genre-song-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.genre-song-row:hover {
  background: #f8fafc;
  transform: translateX(4px);
}

.genre-song-rank {
  display: flex;
  align-items: center;
  justify-content: center;
}

.genre-song-number {
  font-size: 18px;
  font-weight: 600;
  color: #64748b;
}

.genre-song-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.genre-song-avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.genre-song-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.genre-song-title {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.genre-song-artist {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.genre-song-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.genre-song-genre {
  padding: 4px 12px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.genre-song-duration {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
}

.genre-song-rank-badge {
  padding: 4px 12px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #78350f;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

/* FAQ Section */
.genre-faq-section {
  margin-bottom: 40px;
}

.genre-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.genre-faq-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.genre-faq-item[open] {
  border-color: #0ea5e9;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.genre-faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.genre-faq-question:hover {
  background: #f8fafc;
  color: #0ea5e9;
}

.genre-faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  color: #64748b;
  transition: transform 0.2s ease;
}

.genre-faq-item[open] .genre-faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.genre-faq-answer {
  padding: 0 24px 20px 24px;
}

.genre-faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Genre Not Found */
.genre-not-found {
  text-align: center;
  padding: 80px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.genre-not-found h1 {
  margin: 0 0 16px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.genre-not-found p {
  margin: 0 0 32px 0;
  font-size: 16px;
  color: #64748b;
}

.genre-back-btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.genre-back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

/* Responsive Design for Genre Detail */
@media (max-width: 768px) {
  .genre-hero-title {
    font-size: 32px;
  }

  .genre-hero-description {
    font-size: 15px;
  }

  .genre-pillar-card {
    padding: 24px;
  }

  .genre-pillar-headline {
    font-size: 24px;
  }

  .genre-pillar-content p {
    font-size: 15px;
  }

  .genre-read-more-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .genre-section-title {
    font-size: 24px;
  }

  .genre-songs-list {
    padding: 12px;
  }

  .genre-song-row {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .genre-song-meta {
    display: none;
  }

  .genre-faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .genre-faq-answer {
    padding: 0 20px 16px 20px;
  }
}

@media (max-width: 480px) {
  .genre-detail-hero {
    padding: 40px 20px;
  }

  .genre-hero-title {
    font-size: 26px;
  }

  .genre-hero-description {
    font-size: 14px;
  }

  .genre-pillar-card {
    padding: 20px;
  }

  .genre-pillar-headline {
    font-size: 20px;
  }

  .genre-pillar-content p {
    font-size: 14px;
  }

  .genre-read-more-btn {
    padding: 8px 14px;
    font-size: 12px;
    margin-top: 16px;
  }

  .genre-section-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .genre-songs-list {
    padding: 8px;
    gap: 6px;
  }

  .genre-song-row {
    padding: 8px;
    gap: 10px;
  }

  .genre-song-rank {
    width: 32px;
  }

  .genre-song-number {
    font-size: 16px;
  }

  .genre-song-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .genre-song-title {
    font-size: 14px;
  }

  .genre-song-artist {
    font-size: 12px;
  }

  .genre-faq-question {
    padding: 14px 16px;
    font-size: 14px;
  }

  .genre-faq-answer {
    padding: 0 16px 14px 16px;
  }

  .genre-faq-answer p {
    font-size: 14px;
  }

  .genre-not-found {
    padding: 60px 20px;
  }

  .genre-not-found h1 {
    font-size: 24px;
  }

  .genre-not-found p {
    font-size: 14px;
  }
}

/* ==================== RECOMMENDED SONGS ==================== */
.lp-recommended-section {
  max-width: 1120px;
  margin: 60px auto;
  padding: 0 24px;
}

.lp-recommended-header {
  margin-bottom: 32px;
}

.lp-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.lp-section-title svg {
  color: #7c3aed;
  flex-shrink: 0;
}

.lp-recommended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.lp-recommended-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-recommended-card:hover {
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
  transform: translateY(-2px);
}

.lp-recommended-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lp-recommended-avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.lp-recommended-info {
  flex: 1;
  min-width: 0;
}

.lp-recommended-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 6px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}

.lp-recommended-artist {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-recommended-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.lp-recommended-genre {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}

.lp-recommended-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.lp-recommended-duration svg {
  flex-shrink: 0;
}

/* Responsive for recommended songs */
@media (max-width: 768px) {
  .lp-recommended-section {
    margin: 40px auto;
    padding: 0 16px;
  }

  .lp-section-title {
    font-size: 22px;
    gap: 8px;
  }

  .lp-section-title svg {
    width: 18px;
    height: 18px;
  }

  .lp-recommended-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-recommended-card {
    padding: 16px;
  }

  .lp-recommended-avatar {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .lp-recommended-title {
    font-size: 15px;
  }

  .lp-recommended-artist {
    font-size: 13px;
  }
}