.artists-wrap {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .section-title {
    color: var(--text);
    margin-bottom: 24px;
  }

  .artist-card {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    background: var(--surface);
    height: 100%;
  }

  .artist-icon-wrap {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  }

  .artist-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #0c4a6e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 44px;
  }

  .artist-name {
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .role-badge {
    display: inline-block;
    margin: 2px 4px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: var(--surface-2);
    color: var(--text) !important;
    border: 1px solid var(--border);
  }

  .role-singer {
    background: color-mix(in srgb, var(--primary) 18%, var(--surface));
    border-color: color-mix(in srgb, var(--primary) 50%, var(--border));
  }

  .role-lyricist {
    background: color-mix(in srgb, var(--accent) 18%, var(--surface));
    border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
  }

  .role-music {
    background: color-mix(in srgb, #f59e0b 18%, var(--surface));
    border-color: color-mix(in srgb, #f59e0b 50%, var(--border));
  }

  [data-bs-theme="dark"] .role-badge {
    color: #e5edf7 !important;
  }

  .artist-meta {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 14px;
  }

  .btn-view-songs {
    margin-top: 14px;
    background: #0ea5e9;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 9px 14px;
    font-weight: 600;
    cursor: pointer;
  }

  .btn-view-songs:hover {
    background: #0284c7;
  }

  .artist-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(2, 6, 23, 0.7);
    align-items: center;
    justify-content: center;
    padding: 16px;
  }

  .artist-modal {
    width: min(1100px, 100%);
    max-height: 86vh;
    overflow: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 16px;
  }

  .artist-modal-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
  }

  .artist-modal-title {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text);
  }

  .artist-modal-subtitle {
    margin: 2px 0 0;
    color: var(--text-muted);
    font-size: 0.92rem;
  }

  .artist-modal-close {
    border: 0;
    background: var(--surface-2);
    color: var(--text);
    border-radius: 8px;
    min-width: 72px;
    height: 34px;
    font-size: 13px;
    font-weight: 700;
    padding: 0 12px;
    line-height: 1;
    cursor: pointer;
  }

  .artist-modal-table-wrap {
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: 10px;
  }

  .artist-modal-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
  }

  .artist-modal-table th,
  .artist-modal-table td {
    border: 1px solid var(--border);
    padding: 10px;
    vertical-align: top;
    color: var(--text);
    font-size: 0.9rem;
  }

  .artist-modal-table th {
    background: color-mix(in srgb, var(--primary) 15%, var(--surface-2));
    font-weight: 700;
  }

  .artist-modal-center {
    text-align: center;
  }

  .artist-modal .yt-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 108px;
    height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #dc2626 !important;
    background: #dc2626 !important;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1;
  }

  .artist-modal .yt-link-btn i { margin-right: 0; color: #ffffff !important; }

  .artist-modal .yt-link-btn:hover,
  .artist-modal .yt-link-btn:focus {
    background: #b91c1c !important;
    border-color: #b91c1c !important;
    color: #ffffff !important;
  }

  .artist-modal .ott-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 108px;
    height: 34px;
    padding: 0 10px;
    margin: 2px;
    border-radius: 8px;
    border: 1px solid #0f6ea3 !important;
    background: #0f6ea3 !important;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1;
  }

  .artist-modal .ott-link-btn i { margin-right: 0; color: #ffffff !important; }

  .artist-modal .ott-link-btn:hover,
  .artist-modal .ott-link-btn:focus {
    background: #0b5d89 !important;
    border-color: #0b5d89 !important;
    color: #ffffff !important;
  }

  .artist-modal .yt-link-btn:visited,
  .artist-modal .yt-link-btn:active,
  .artist-modal .ott-link-btn:visited,
  .artist-modal .ott-link-btn:active {
    color: #ffffff !important;
  }

  [data-bs-theme="light"] .artist-modal-title,
  [data-bs-theme="light"] .artist-modal-subtitle,
  [data-bs-theme="light"] .artist-modal-table th,
  [data-bs-theme="light"] .artist-modal-table td {
    color: #0b1220 !important;
  }

  [data-bs-theme="light"] .yt-link-btn,
  [data-bs-theme="light"] .ott-link-btn {
    color: #ffffff !important;
  }
