    /* Modern collapsible section styles for artist page */
    .collapsible {
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 18px;
    }

    .collapsible-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
      padding: 16px 20px;
      background: #0a0a0a;
      border: 1px solid rgba(255,105,180,0.15);
      transition: all 200ms ease;
      position: relative;
    }

    .collapsible-header:hover {
      background: #111;
      border-color: rgba(255,105,180,0.25);
    }

    .collapsible-header h3 {
      margin: 0;
      color: var(--color-accent);
      text-shadow: 0 0 10px rgba(255,105,180,0.4);
      font-size: 1.1rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .collapsible-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 8px;
      background: rgba(255,255,255,0.05);
      color: var(--color-accent);
      border: 1px solid rgba(255,105,180,0.2);
      cursor: pointer;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 200ms ease;
      backdrop-filter: blur(10px);
    }

    .collapsible-content {
      --max-h: 0px;
      max-height: var(--max-h);
      overflow: hidden;
      padding: 0 16px;
      transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1), padding 300ms ease;
      background: #0d0d0d;
    }

    .chev {
      width: 20px;
      height: 20px;
      display: inline-block;
      transform-origin: center;
      transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
      filter: drop-shadow(0 2px 8px rgba(255,105,180,0.3));
    }

    .chev.open {
      transform: rotate(180deg);
    }

    .albums-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      padding: 4px 0;
    }

    @media (max-width: 900px) {
      .albums-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 560px) {
      .albums-grid { grid-template-columns: repeat(2, 1fr); }
    }

    .songs-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255,255,255,0.02);
      backdrop-filter: blur(10px);
      table-layout: fixed;
    }

    .songs-table thead {
      background: #111;
    }

    .songs-table thead th {
      padding: 12px 8px;
      color: var(--color-accent);
      font-weight: 600;
      font-size: 0.8rem;
      text-align: left;
      border-bottom: 1px solid rgba(255,105,180,0.2);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Improved row spacing and readability for Popular list */
    .songs-table tbody tr {
      border-bottom: 1px solid rgba(255,255,255,0.03);
      transition: background-color 180ms ease, transform 120ms ease;
    }

    .songs-table tbody td {
      padding: 12px 10px;
      vertical-align: middle;
      color: #ddd;
      word-break: break-word;
      min-height: 64px;
    }

    .songs-table tbody td:nth-child(1) {
      text-align: center;
      color: #cfcfcf;
      font-weight: 600;
      width: 48px;
    }

    .songs-table tbody td:nth-child(2) {
      /* Title + small album line */
      min-width: 220px;
    }

    .songs-table tbody td:nth-child(3) {
      color: #9b9b9b;
      max-width: 260px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .songs-table tbody td .album-subtitle {
      margin-top: 6px;
      color: #9b9b9b;
      font-size: 0.85rem;
      line-height: 1;
    }

    .songs-table tbody td.score-cell {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Ensure the pill itself is horizontally centered within the flex cell */
    .songs-table tbody td.score-cell .score-pill {
      margin: 0 auto;
      display: inline-flex;
      min-width: 56px;
      justify-content: center;
      align-items: center;
      height: 36px;
      line-height: 36px;
      padding: 0 14px;
    }

    .songs-table tbody tr:hover {
      background: rgba(255,255,255,0.02);
    }

    /* Slightly larger clickable area for the title link */
    .songs-table tbody a.text-accent {
      display: inline-block;
      padding: 2px 0;
      color: #ff8ac6;
    }

    .score-pill {
      background: #000;
      color: #ff69b4;
      border: 1px solid rgba(255,105,180,0.5);
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      box-shadow: 0 2px 8px rgba(255,105,180,0.2);
    }

    .btn-rate {
      background: linear-gradient(135deg, #ff69b4, #8b00ff);
      color: #fff;
      padding: 8px 14px;
      border-radius: 20px;
      font-weight: 600;
      text-decoration: none;
      transition: all 200ms ease;
      border: none;
      cursor: pointer;
      font-size: 0.85rem;
    }

    @media (max-width: 768px) {
      .songs-table tbody td:nth-child(4),
      .songs-table tbody td:last-child {
        display: none;
      }
    }
