    :root {
      --bg: #0a0e27;
      --text: #ffffff;
      --text-muted: rgba(255,255,255,0.75);
      --text-soft: rgba(255,255,255,0.55);
      --line: rgba(255,255,255,0.1);
      --line-strong: rgba(255,255,255,0.15);
      --glass: rgba(255,255,255,0.02);
      --glass-hover: rgba(255,255,255,0.04);
      --chip: rgba(255,255,255,0.06);
      --chip-active: rgba(255,255,255,0.15);
      --primary: #6366f1;
      --primary-glow: rgba(99, 102, 241, 0.3);
      --accent: #ec4899;
      --accent-glow: rgba(236, 72, 153, 0.25);
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      overflow-y: auto;
    }
    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0f1535 100%);
      color: var(--text);
      overflow-x: hidden;
      overflow-x: clip;
      display: flow-root;
      position: relative;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body.nav-open {
      overflow: hidden;
    }

    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }

    html, body {
      touch-action: manipulation;
    }

    * {
      -webkit-tap-highlight-color: transparent;
    }

    .site-loader {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at center, rgba(99,102,241,0.18), rgba(10,14,39,0.96) 45%, rgba(5,7,17,1) 100%);
      z-index: 9999;
      transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
    }

    .site-loader.hidden {
      opacity: 0;
      visibility: hidden;
      transform: scale(1.03);
      pointer-events: none;
    }

    .loader-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .loader-art {
      width: min(420px, 58vw);
      filter: drop-shadow(0 0 28px rgba(162, 110, 255, 0.7));
      animation: loaderFloat 1.8s ease-in-out infinite alternate, loaderPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    .brand-svg {
      width: 100%;
      height: auto;
      display: block;
    }

    @keyframes loaderFloat {
      from { transform: translateY(8px); }
      to { transform: translateY(-8px); }
    }

    @keyframes loaderPop {
      from { opacity: 0; transform: scale(0.82); }
      to { opacity: 1; transform: scale(1); }
    }

    .loader-progress {
      width: min(220px, 50vw);
      height: 3px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      overflow: hidden;
    }

    .loader-progress-fill {
      height: 100%;
      width: 0%;
      border-radius: 999px;
      background: linear-gradient(90deg, #6d4af0, #d0a4ff, #f0d9ff);
      animation: loaderProgress 0.85s ease-out forwards;
    }

    @keyframes loaderProgress {
      from { width: 0%; }
      to { width: 100%; }
    }

    .loader-label {
      font-size: 0.7rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      font-weight: 700;
      color: rgba(255,255,255,0.5);
    }

    .page {
      width: min(1560px, calc(100vw - 34px));
      margin: 18px auto 26px;
      background: rgba(15, 21, 53, 0.7);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 24px;
      box-shadow:
        0 50px 150px rgba(0,0,0,0.8),
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 150px rgba(99, 102, 241, 0.15),
        inset 0 0 100px rgba(99, 102, 241, 0.05);
      overflow: visible;
      position: relative;
      z-index: 10;
      animation: pageReveal 0.9s ease-out 0.2s backwards;
    }

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

    .topbar {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px 12px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      background: #0d122e;
      border-top-left-radius: inherit;
      border-top-right-radius: inherit;
    }

    @supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
      .topbar {
        background: transparent;
      }

      .topbar::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        border-radius: inherit;
        background: rgba(13, 18, 46, 0.42);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        backdrop-filter: blur(20px) saturate(180%);
        pointer-events: none;
      }
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      flex-shrink: 0;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.3s ease;
    }

    .brand:hover { opacity: 0.8; }

    .brand-svg.compact {
      width: 118px;
      height: auto;
      display: block;
    }

    .nav {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 2px;
      margin: 0;
      min-width: 0;
    }

    .nav.left {
      justify-content: flex-start;
      flex-shrink: 0;
    }

    .nav.right {
      justify-content: flex-end;
      margin-left: auto;
      flex-shrink: 0;
    }

    .nav.right.hidden-until-auth {
      display: none !important;
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: center;
      color: var(--text-muted);
      font-size: 0.76rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 1px solid transparent;
      background: transparent;
    }

    .nav-item:hover {
      background: rgba(99, 102, 241, 0.15);
      color: var(--text);
      border-color: rgba(99, 102, 241, 0.3);
    }

    .nav-item.active {
      background: rgba(99, 102, 241, 0.25);
      border-color: rgba(99, 102, 241, 0.5);
      color: var(--text);
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    }

    .nav-dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(12, 14, 17, 0.95);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 8px 0;
      min-width: 180px;
      margin-top: 6px;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      opacity: 0;
      pointer-events: none;
      z-index: 10000;
      transition: opacity 0.2s ease;
    }

    .dropdown-menu.show {
      opacity: 1;
      pointer-events: auto;
    }

    .dropdown-menu:empty {
      display: none;
    }

    .dropdown-menu a {
      display: block;
      padding: 10px 16px;
      color: var(--text-muted);
      font-size: 0.85rem;
      text-transform: capitalize;
      letter-spacing: 0;
      font-weight: 500;
      transition: all 0.2s ease;
      border-left: 3px solid transparent;
    }

    .dropdown-menu a:hover {
      background: rgba(255,255,255,0.06);
      color: var(--text);
      border-left-color: rgba(255,255,255,0.3);
    }

    .top-actions .dropdown-menu {
      left: auto;
      right: 0;
    }

    .top-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      min-width: auto;
      position: relative;
      z-index: 1001;
      flex-shrink: 0;
    }

    .nav.right.hidden-until-auth ~ .top-actions {
      margin-left: auto;
    }

    .lang-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: 1.5px solid rgba(99, 102, 241, 0.5);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
      color: rgba(255,255,255,0.9);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 0.75rem;
      font-weight: 700;
      backdrop-filter: blur(8px);
      position: relative;
      overflow: hidden;
    }

    .lang-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .lang-btn:hover {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%);
      color: var(--text);
      border-color: rgba(99, 102, 241, 0.8);
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
      transform: translateY(-2px);
    }

    .lang-btn:hover::before { opacity: 1; }

    .profile-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1.5px solid rgba(99, 102, 241, 0.5);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
      color: var(--text);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 0.85rem;
      font-weight: 600;
      backdrop-filter: blur(8px);
      position: relative;
      overflow: hidden;
    }

    .profile-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .profile-btn:hover {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%);
      border-color: rgba(99, 102, 241, 0.8);
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
      transform: translateY(-2px);
    }

    .profile-btn:hover::before { opacity: 1; }

    .profile-avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%);
      border: 1.5px solid rgba(99, 102, 241, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      transition: all 0.3s ease;
    }

    .profile-btn:hover .profile-avatar {
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
    }

    .profile-avatar.has-image {
      background-size: cover;
      background-position: center;
    }

    .profile-name {
      max-width: 110px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .nav-close {
      display: none;
    }

    .menu-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(99, 102, 241, 0.4);
      background: rgba(99, 102, 241, 0.1);
      color: var(--text);
      border-radius: 8px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      backdrop-filter: blur(6px);
      transition: all 0.2s ease;
      position: relative;
    }

    .menu-toggle:hover {
      background: rgba(99, 102, 241, 0.18);
      border-color: rgba(99, 102, 241, 0.6);
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
    }

    @media (max-width: 1000px) {
      .nav { display: none; }
      .menu-toggle { display: flex; }
    }

    .shell {
      padding: 18px 18px 10px;
      position: relative;
      z-index: 20;
    }

    .song-wrap {
      max-width: 1180px;
      margin: 0 auto;
    }

    .song-back-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 14px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-soft);
      transition: color 0.2s ease;
    }

    .song-back-link:hover { color: var(--text); }

    .song-card {
      position: relative;
      display: flex;
      gap: 36px;
      padding: 40px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
      border: 1px solid rgba(99, 102, 241, 0.3);
      animation: authorHeaderIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
      flex-wrap: wrap;
    }

    .song-card .loading-state-row,
    .song-card .song-not-found {
      padding: 60px 20px;
      width: 100%;
      text-align: center;
      color: var(--text-muted);
    }

    .song-cover {
      width: 280px;
      height: 280px;
      border-radius: 22px;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
      box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    }

    .song-info {
      min-width: 0;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 14px;
      justify-content: center;
    }

    .song-title {
      font-size: 2.3rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin: 0;
      background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.25;
    }

    .song-co-authors {
      margin-top: 8px;
      font-size: 0.85rem;
      color: var(--text-soft);
    }

    .song-co-authors a {
      color: #a5b4fc;
      text-decoration: none;
    }

    .song-co-authors a:hover { text-decoration: underline; }

    .song-artist {
      font-size: 1.15rem;
      color: var(--text-soft);
      margin-top: -10px;
    }

    .song-uploader {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      width: fit-content;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .song-uploader:hover {
      background: rgba(99, 102, 241, 0.16);
      border-color: rgba(99, 102, 241, 0.5);
    }

    .song-uploader .uploader-avatar {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .song-uploader .uploader-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
    }

    .song-uploader .uploader-badge {
      font-size: 0.9rem;
    }

    .song-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .song-stat {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .song-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .song-tag {
      display: inline-flex;
      align-items: center;
      padding: 5px 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.22) 0%, rgba(236, 72, 153, 0.16) 100%);
      border: 1px solid rgba(99, 102, 241, 0.42);
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.78rem;
      font-weight: 700;
    }

    .tag-picker {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag-chip {
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-soft);
      font-size: 0.78rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .tag-chip:hover {
      border-color: rgba(99, 102, 241, 0.6);
      color: var(--text);
    }

    .tag-chip.active {
      border-color: rgba(99, 102, 241, 0.9);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.35) 0%, rgba(236, 72, 153, 0.25) 100%);
      color: #fff;
    }

    .modal-hint {
      margin-top: 8px;
      font-size: 0.76rem;
      color: var(--text-soft);
    }

    .song-id-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .song-id-label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-soft);
    }

    .song-id-value {
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: 0.9rem;
      padding: 4px 10px;
      border-radius: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--text);
      word-break: break-all;
    }

    .song-id-row:has(.song-id-copy) .song-id-value {
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .song-id-row:has(.song-id-copy) .song-id-value:hover {
      border-color: rgba(99, 102, 241, 0.7);
      background: rgba(99, 102, 241, 0.14);
    }

    .song-id-row .song-id-copy {
      min-width: 0;
      min-height: 30px;
      padding: 0 14px;
      font-size: 0.72rem;
    }

    .song-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    .song-actions .report-button {
      width: auto;
      min-width: 96px;
      padding: 0 16px;
    }

    .like-button.active {
      border-color: rgba(248, 113, 113, 0.7);
      background: linear-gradient(135deg, rgba(248, 113, 113, 0.28) 0%, rgba(236, 72, 153, 0.2) 100%);
    }

    .like-button {
      position: relative;
      overflow: visible;
    }

    .like-button .like-heart {
      display: inline-block;
      transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
      transform-origin: center;
    }

    .like-button.pop .like-heart {
      animation: song-like-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes song-like-pop {
      0% { transform: scale(1); }
      35% { transform: scale(1.5); }
      60% { transform: scale(0.85); }
      100% { transform: scale(1); }
    }

    .like-particle {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      animation: song-like-particle 0.6s ease-out forwards;
    }

    @keyframes song-like-particle {
      to {
        transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0);
        opacity: 0;
      }
    }

    .favorite-button.active {
      border-color: rgba(251, 191, 36, 0.7);
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.28) 0%, rgba(236, 72, 153, 0.15) 100%);
    }

    .song-listen-btn {
      border-color: rgba(99, 102, 241, 0.7);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(236, 72, 153, 0.28) 100%);
    }

    @media (max-width: 640px) {
      .song-card { flex-direction: column; align-items: center; text-align: center; padding: 22px; }
      .song-cover { width: 140px; height: 140px; }
      .song-info { align-items: center; }
      .song-stats, .song-id-row, .song-actions { justify-content: center; }
    }

    .song-more-section {
      margin-top: 28px;
    }

    .song-more-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--text);
      margin: 0 0 14px;
    }

    .song-more-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 14px;
    }

    .song-more-card {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 14px;
      border-radius: 16px;
      background: var(--glass);
      border: 1px solid var(--line);
      backdrop-filter: blur(6px);
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .song-more-card:hover {
      background: rgba(99, 102, 241, 0.12);
      border-color: rgba(99, 102, 241, 0.4);
      transform: translateY(-2px);
    }

    .song-more-cover {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 12px;
      background-image: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .song-more-name {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .song-more-sub {
      font-size: 0.76rem;
      color: var(--text-soft);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .author-header {
      position: relative;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
      border: 1px solid rgba(99, 102, 241, 0.3);
      margin-bottom: 20px;
      overflow: hidden;
      animation: authorHeaderIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

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

    .author-header .loading-state-row,
    .author-header .author-not-found {
      padding: 60px 20px;
    }

    .author-banner {
      height: 128px;
      background: linear-gradient(120deg, rgba(99,102,241,0.4), rgba(236,72,153,0.28) 55%, rgba(167,139,250,0.35));
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .author-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: inherit;
      filter: blur(30px) saturate(150%) brightness(0.7);
      transform: scale(1.2);
    }

    .author-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10,14,39,0) 35%, rgba(10,14,39,0.6) 100%);
    }

    .author-main {
      display: flex;
      align-items: flex-end;
      gap: 20px;
      padding: 0 26px;
      margin-top: -48px;
      position: relative;
      z-index: 2;
      flex-wrap: wrap;
    }

    .author-avatar {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      background: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.2rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
      border: 4px solid rgba(15, 21, 53, 0.92);
      box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 0 3px rgba(99, 102, 241, 0.45);
      animation: avatarPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
    }

    @keyframes avatarPop {
      from { opacity: 0; transform: scale(0.7); }
      to { opacity: 1; transform: scale(1); }
    }

    .author-info {
      min-width: 0;
      flex: 1;
      padding: 12px 0 18px;
    }

    .author-edit-btn {
      flex-shrink: 0;
      margin-bottom: 18px;
      padding: 9px 16px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.06);
      color: #e5e7eb;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
      white-space: nowrap;
    }

    .author-edit-btn:hover {
      background: rgba(99, 102, 241, 0.22);
      border-color: rgba(99, 102, 241, 0.55);
      transform: translateY(-1px);
    }

    .author-name-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .author-name {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }

    .author-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(99, 102, 241, 0.25);
      border: 1px solid rgba(99, 102, 241, 0.55);
      white-space: nowrap;
      box-shadow: 0 0 14px rgba(99, 102, 241, 0.25);
    }

    .author-username {
      margin-top: 3px;
      font-size: 0.85rem;
      color: var(--text-soft);
    }

    .author-joined {
      margin-top: 3px;
      font-size: 0.78rem;
      color: var(--text-soft);
      opacity: 0.75;
    }

    .author-bio {
      margin: 12px 26px 0;
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.55;
      max-width: 640px;
      white-space: pre-wrap;
      position: relative;
      z-index: 2;
    }

    .author-stats {
      display: flex;
      gap: 12px;
      padding: 16px 26px 22px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .author-stat-card {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(99, 102, 241, 0.25);
      backdrop-filter: blur(6px);
      transition: all 0.25s ease;
      animation: statCardIn 0.4s ease both;
    }

    .author-stat-card:nth-child(1) { animation-delay: 0.12s; }
    .author-stat-card:nth-child(2) { animation-delay: 0.2s; }
    .author-stat-card:nth-child(3) { animation-delay: 0.28s; }

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

    .author-stat-card:hover {
      background: rgba(99, 102, 241, 0.14);
      border-color: rgba(99, 102, 241, 0.55);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
    }

    .author-stat-card.stars {
      background: rgba(251, 191, 36, 0.08);
      border-color: rgba(251, 191, 36, 0.35);
    }

    .author-stat-card.stars:hover {
      background: rgba(251, 191, 36, 0.16);
      border-color: rgba(251, 191, 36, 0.6);
      box-shadow: 0 6px 20px rgba(251, 191, 36, 0.25);
    }

    .author-stat-card.stars .stat-value { color: #fbbf24; }

    .stat-icon { font-size: 1.3rem; }

    .stat-body { display: flex; flex-direction: column; line-height: 1.25; }

    .stat-value { font-size: 1.05rem; font-weight: 800; color: var(--text); }

    .stat-label {
      font-size: 0.7rem;
      color: var(--text-soft);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .author-not-found {
      padding: 60px 20px;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .author-badges-section {
      padding: 0 26px 22px;
      position: relative;
      z-index: 2;
    }

    .author-badges-label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-soft);
      margin-bottom: 8px;
    }

    .author-badges-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .mini-badge {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.14);
      cursor: default;
      transition: all 0.2s ease;
      animation: statCardIn 0.35s ease both;
    }

    .mini-badge:hover {
      background: rgba(99, 102, 241, 0.16);
      border-color: rgba(99, 102, 241, 0.5);
      transform: translateY(-2px);
    }

    .mini-badge.active {
      background: rgba(99, 102, 241, 0.22);
      border-color: rgba(99, 102, 241, 0.7);
      box-shadow: 0 0 14px rgba(99, 102, 241, 0.35);
    }

    .top-track-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      border-radius: 16px;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(236, 72, 153, 0.06) 100%);
      border: 1px solid rgba(251, 191, 36, 0.3);
      backdrop-filter: blur(8px);
      animation: statCardIn 0.4s ease both;
    }

    .top-track-card[hidden] { display: none; }

    .top-track-label {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #fbbf24;
      padding-right: 14px;
      border-right: 1px solid rgba(251, 191, 36, 0.25);
    }

    .top-track-info {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      flex: 1;
    }

    .top-track-info .track-cover {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
    }

    .top-track-title {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .top-track-sub {
      font-size: 0.78rem;
      color: var(--text-soft);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      padding: 6px 12px;
      border-radius: 16px;
      background: var(--glass);
      border: 1px solid var(--line);
      backdrop-filter: blur(8px);
      margin-bottom: 18px;
    }

    .toolbar-group {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      border-radius: 999px;
      padding: 4px 12px;
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.3);
      color: var(--text-muted);
      font-size: 0.8rem;
      line-height: 1;
      white-space: nowrap;
      backdrop-filter: blur(4px);
      transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    .chip:hover {
      background: rgba(99, 102, 241, 0.2);
      border-color: rgba(99, 102, 241, 0.6);
    }

    .chip:active {
      transform: scale(0.92);
    }

    .chip.active {
      background: rgba(99, 102, 241, 0.3);
      border-color: rgba(99, 102, 241, 0.8);
      color: var(--text);
      box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
    }

    @keyframes chipPop {
      0% { transform: scale(0.85); }
      55% { transform: scale(1.08); }
      100% { transform: scale(1); }
    }

    .chip.pop {
      animation: chipPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .library-count {
      font-size: 0.8rem;
      color: var(--text-soft);
      white-space: nowrap;
    }

    .list-panel {
      background: rgba(99, 102, 241, 0.08);
      border: 1px solid rgba(99, 102, 241, 0.25);
      border-radius: 18px;
      overflow: hidden;
      backdrop-filter: blur(12px);
      box-shadow: 0 0 50px rgba(99, 102, 241, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .track-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      padding: 14px 14px 16px;
      min-height: 120px;
    }

    .track-row {
      display: grid;
      grid-template-columns: 24px 64px 1fr auto;
      grid-template-areas:
        "index cover meta meta"
        "index cover likes actions";
      align-items: center;
      row-gap: 8px;
      column-gap: 12px;
      padding: 12px 14px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(236, 72, 153, 0.03) 100%);
      border: 1px solid rgba(99, 102, 241, 0.2);
      backdrop-filter: blur(6px);
      transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      animation: trackRowIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    @keyframes trackRowIn {
      from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .track-row.skeleton {
      pointer-events: none;
      background: linear-gradient(100deg,
        rgba(99, 102, 241, 0.06) 30%,
        rgba(99, 102, 241, 0.16) 50%,
        rgba(99, 102, 241, 0.06) 70%);
      background-size: 250% 100%;
      animation: trackRowIn 0.3s ease both, skeletonShimmer 1.3s ease-in-out infinite;
    }

    .skeleton-block {
      background: rgba(255,255,255,0.08);
      border-radius: 8px;
    }

    @keyframes skeletonShimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .track-row:hover {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
      border-color: rgba(99, 102, 241, 0.6);
      box-shadow: 0 8px 32px rgba(99, 102, 241, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
      transform: translateY(-3px) translateX(2px);
    }

    .track-row:hover .track-cover {
      transform: scale(1.08) rotateY(5deg);
      box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
    }

    .track-index {
      grid-area: index;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.48);
      text-align: center;
      font-weight: 600;
    }

    .track-cover {
      grid-area: cover;
      width: 64px;
      height: 64px;
      border-radius: 14px;
      background: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
      position: relative;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,255,255,0.1);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    .track-cover::before {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 8px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 50%),
                  radial-gradient(circle, rgba(20,20,20,0.9) 0%, rgba(10,10,10,0.95) 100%);
      border: 1.5px solid rgba(255,255,255,0.15);
    }

    .track-cover::after {
      content: "🎵";
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      opacity: 0;
      transition: all 0.3s ease;
    }

    .track-row:hover .track-cover::after { opacity: 1; }

    .track-cover.c1 { background: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%); }
    .track-cover.c2 { background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%); }
    .track-cover.c3 { background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%); }
    .track-cover.c4 { background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%); }

    .track-cover.has-image {
      background-size: cover;
      background-position: center;
    }

    .track-cover.has-image::before,
    .track-cover.has-image::after {
      content: none;
    }

    .track-meta {
      grid-area: meta;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      color: rgba(255,255,255,0.9);
    }

    .track-name {
      font-weight: 700;
      font-size: 1.08rem;
      letter-spacing: -0.02em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .track-sub {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .track-duration {
      grid-area: likes;
      text-align: left;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.75);
      font-weight: 700;
      letter-spacing: 0.3px;
      min-width: 50px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .track-actions {
      grid-area: actions;
      display: flex;
      justify-content: flex-end;
      gap: 8px;
    }

    .track-button {
      min-width: 96px;
      min-height: 36px;
      border: 1.5px solid rgba(99, 102, 241, 0.6);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.15) 100%);
      color: #ffffff;
      border-radius: 10px;
      cursor: pointer;
      font-size: 0.82rem;
      font-weight: 700;
      backdrop-filter: blur(6px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }

    .track-button:hover {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(236, 72, 153, 0.3) 100%);
      border-color: rgba(99, 102, 241, 0.9);
      box-shadow: 0 0 25px rgba(99, 102, 241, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
      transform: translateY(-2px);
    }

    .track-button.copied {
      background: linear-gradient(135deg, rgba(52, 211, 153, 0.35) 0%, rgba(52, 211, 153, 0.2) 100%);
      border-color: rgba(52, 211, 153, 0.7);
    }

    .report-button {
      min-width: 0;
      width: 36px;
      padding: 0;
      font-size: 1rem;
      border-color: rgba(248, 113, 113, 0.45);
      background: linear-gradient(135deg, rgba(248, 113, 113, 0.14) 0%, rgba(236, 72, 153, 0.1) 100%);
    }

    .report-button:hover {
      border-color: rgba(248, 113, 113, 0.85);
      background: linear-gradient(135deg, rgba(248, 113, 113, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%);
      box-shadow: 0 0 25px rgba(248, 113, 113, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(6, 8, 20, 0.72);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      padding: 16px;
      animation: modalFadeIn 0.2s ease both;
    }

    .modal-overlay[hidden] { display: none; }

    @keyframes modalFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-box {
      width: 100%;
      max-width: 420px;
      background: linear-gradient(160deg, #171b3a 0%, #14183a 100%);
      border: 1px solid rgba(99, 102, 241, 0.35);
      border-radius: 18px;
      padding: 24px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
      animation: trackRowIn 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .modal-box h3 {
      margin: 0 0 6px;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--text);
    }

    .modal-box p.modal-subtitle {
      margin: 0 0 16px;
      font-size: 0.85rem;
      color: var(--text-soft);
    }

    .modal-box textarea,
    .modal-box input[type="text"] {
      width: 100%;
      border-radius: 12px;
      border: 1.5px solid var(--line-strong);
      background: rgba(255,255,255,0.04);
      color: var(--text);
      font-family: inherit;
      font-size: 0.9rem;
      padding: 12px;
      box-sizing: border-box;
      transition: border-color 0.2s ease;
    }

    .modal-box textarea {
      min-height: 96px;
      resize: vertical;
    }

    .modal-box textarea:focus,
    .modal-box input[type="text"]:focus {
      outline: none;
      border-color: var(--primary);
    }

    .modal-box .modal-field {
      margin-bottom: 12px;
    }

    .modal-box .modal-field label {
      display: block;
      font-size: 0.78rem;
      color: var(--text-soft);
      margin-bottom: 6px;
    }

    .badge-modal-box {
      text-align: center;
    }

    .badge-modal-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 14px;
      border-radius: 16px;
      background: rgba(99, 102, 241, 0.16);
      border: 1px solid rgba(99, 102, 241, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
    }

    .badge-modal-box .modal-subtitle {
      margin-bottom: 4px;
    }

    .badge-modal-box .modal-actions {
      justify-content: center;
    }

    .modal-message {
      margin-top: 10px;
      font-size: 0.82rem;
      min-height: 1.2em;
    }

    .modal-message.error { color: #f87171; }
    .modal-message.success { color: #34d399; }

    .sponsors-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px 16px;
      align-items: start;
      max-height: min(440px, 52vh);
      overflow-y: auto;
      overflow-x: hidden;
      margin: 4px 0;
      scrollbar-width: thin;
      scrollbar-color: rgba(99, 102, 241, 0.5) rgba(255,255,255,0.05);
    }

    .sponsors-list::-webkit-scrollbar {
      width: 6px;
    }

    .sponsors-list::-webkit-scrollbar-track {
      background: rgba(255,255,255,0.04);
      border-radius: 8px;
    }

    .sponsors-list::-webkit-scrollbar-thumb {
      background: rgba(99, 102, 241, 0.5);
      border-radius: 8px;
    }

    .sponsors-list::-webkit-scrollbar-thumb:hover {
      background: rgba(99, 102, 241, 0.75);
    }

    .sponsor-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .sponsor-item:hover {
      background: rgba(99, 102, 241, 0.14);
      border-color: rgba(99, 102, 241, 0.45);
      transform: translateX(2px);
    }

    @media (min-width: 641px) {
      .modal-box.sponsors-wide {
        max-width: 860px;
      }

      .sponsors-list.two-columns {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      }
    }

    .sponsor-column {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-width: 0;
    }

    .sponsor-group-title {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin: 0 2px;
    }

    .sponsor-name {
      font-weight: 700;
      font-size: 0.92rem;
      color: var(--text);
      overflow-wrap: anywhere;
    }

    .howto-steps {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 4px 0 6px;
    }

    .howto-step {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px;
      border-radius: 12px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .howto-step-num {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.35) 0%, rgba(236, 72, 153, 0.25) 100%);
      border: 1px solid rgba(99, 102, 241, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.82rem;
      color: var(--text);
    }

    .howto-step-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.4;
      padding-top: 3px;
    }

    a.modal-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-sizing: border-box;
    }

    .modal-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 18px;
    }

    .modal-btn {
      min-height: 40px;
      padding: 0 18px;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 700;
      cursor: pointer;
      border: 1.5px solid var(--line-strong);
      background: transparent;
      color: var(--text);
      transition: all 0.2s ease;
    }

    .modal-btn.primary {
      border-color: rgba(99, 102, 241, 0.7);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.35) 0%, rgba(236, 72, 153, 0.25) 100%);
    }

    .modal-btn.primary:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .modal-btn:hover:not(:disabled) {
      transform: translateY(-1px);
      border-color: rgba(255,255,255,0.4);
    }

    .toast-container {
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2000;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      width: 100%;
      max-width: 460px;
      padding: 0 16px;
      box-sizing: border-box;
      pointer-events: none;
    }

    .toast {
      pointer-events: auto;
      width: auto;
      max-width: 100%;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 14px;
      border-radius: 12px;
      background: linear-gradient(160deg, #171b3a 0%, #14183a 100%);
      border: 1px solid rgba(99, 102, 241, 0.4);
      box-shadow: 0 12px 40px rgba(0,0,0,0.45);
      color: var(--text);
      font-size: 0.86rem;
      line-height: 1.4;
      animation: toastIn 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .toast.error { border-color: rgba(248, 113, 113, 0.55); }
    .toast.success { border-color: rgba(52, 211, 153, 0.55); }
    .toast.info { border-color: rgba(99, 102, 241, 0.55); }

    .toast.leaving {
      animation: toastOut 0.2s ease forwards;
    }

    .toast-icon { flex-shrink: 0; font-size: 1.05rem; }
    .toast-text { flex: 0 1 auto; min-width: 0; word-break: break-word; }

    .toast-close {
      background: none;
      border: none;
      color: var(--text-soft);
      cursor: pointer;
      font-size: 0.95rem;
      padding: 0;
      line-height: 1;
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      margin: -3px -5px -3px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 7px;
    }

    .toast-close:hover {
      color: var(--text);
      background: rgba(255, 255, 255, 0.08);
    }

    @keyframes toastIn {
      from { opacity: 0; transform: translateY(-14px) scale(0.96); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes toastOut {
      from { opacity: 1; transform: translateY(0) scale(1); }
      to { opacity: 0; transform: translateY(-14px) scale(0.96); }
    }

    .empty-state-row, .loading-state-row {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      color: var(--text-muted);
      font-size: 0.9rem;
      text-align: center;
      padding: 24px;
    }

    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 14px 18px;
    }

    .page-btn {
      min-width: 36px;
      min-height: 36px;
      padding: 0 10px;
      border-radius: 10px;
      border: 1px solid rgba(99, 102, 241, 0.3);
      background: rgba(99, 102, 241, 0.1);
      color: var(--text-muted);
      cursor: pointer;
      font-size: 0.85rem;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .page-btn:hover:not(:disabled) {
      background: rgba(99, 102, 241, 0.25);
      color: var(--text);
      border-color: rgba(99, 102, 241, 0.6);
    }

    .page-btn:disabled {
      opacity: 0.35;
      cursor: not-allowed;
    }

    .page-status {
      font-size: 0.82rem;
      color: var(--text-soft);
      min-width: 90px;
      text-align: center;
    }

    .menu-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(2px);
      z-index: 998;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .menu-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    @media (max-width: 1000px) {
      @keyframes slideInRight {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
      }

      @keyframes slideOutRight {
        from { transform: translateX(0); opacity: 1; }
        to { transform: translateX(100%); opacity: 0; }
      }

      .nav.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 0; right: 0; left: 0; bottom: 0;
        width: 100%;
        height: 100vh;
        overflow-x: hidden;
        background: rgba(10, 12, 20, 0.35);
        padding: 55px 14px 16px;
        gap: 4px;
        z-index: 999;
        animation: slideInRight 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        backdrop-filter: blur(20px);
        overflow-y: auto;
      }

      .nav.left:not(.mobile-open) {
        animation: slideOutRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      }

      .nav.left.mobile-open .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 12px;
        right: 14px;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        border: 1px solid rgba(99, 102, 241, 0.4);
        background: rgba(99, 102, 241, 0.12);
        color: var(--text);
        font-size: 1rem;
        cursor: pointer;
      }

      .nav.left.mobile-open .nav.right {
        display: flex;
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        padding-top: 12px;
        justify-content: flex-start;
        border-top: 1px solid rgba(255,255,255,0.08);
      }

      .nav.left.mobile-open .nav-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
      }

      .nav-item {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 12px 14px;
        font-size: 0.92rem;
        letter-spacing: 0;
        text-transform: none;
        font-weight: 600;
        border-radius: 10px;
        color: var(--text-muted);
        border: 1px solid transparent;
        background: transparent;
        box-shadow: none;
        transition: all 0.2s ease;
      }

      .nav-item:hover {
        background: rgba(99, 102, 241, 0.12);
        color: var(--text);
        border-color: transparent;
      }

      .nav-item.active {
        background: rgba(99, 102, 241, 0.16);
        border-color: transparent;
        color: var(--primary);
        border-left: 3px solid var(--primary);
        padding-left: 11px;
        box-shadow: none;
      }

      .nav.left.mobile-open .dropdown-menu {
        position: static;
        opacity: 1;
        pointer-events: auto;
        display: none;
        min-width: 0;
        width: 100%;
        margin: 4px 0 0;
        padding: 2px 0 2px 14px;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
      }

      .nav.left.mobile-open .dropdown-menu.show {
        display: flex;
        flex-direction: column;
      }

      .nav.left.mobile-open .dropdown-menu a {
        padding: 10px 12px;
        font-size: 0.85rem;
        border-left: 2px solid rgba(255,255,255,0.1);
      }
    }

    @media (max-width: 760px) {
      .page {
        width: min(100vw, calc(100vw - 20px));
        margin: 12px auto 16px;
        border-radius: 16px;
      }

      .topbar { padding: 12px 14px 10px; gap: 10px; }
      .brand { min-width: auto; gap: 8px; font-size: 0.95rem; }
      .brand-svg.compact { width: 92px; }
      .top-actions { gap: 6px; }
      .profile-btn { padding: 0; width: 40px; height: 40px; justify-content: center; gap: 0; }
      .profile-name { display: none; }
      .profile-label { display: none; }

      * { backdrop-filter: none !important; }

      .top-actions {
        gap: 8px;
        margin-left: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
      }

      .author-banner { height: 96px; }
      .author-main { padding: 0 16px; margin-top: -38px; gap: 14px; }
      .author-avatar { width: 76px; height: 76px; font-size: 1.8rem; border-width: 3px; }
      .author-info { padding: 8px 0 14px; }
      .author-bio { margin: 10px 16px 0; }
      .author-stats { padding: 4px 16px 18px; }

      .top-track-card { flex-direction: column; align-items: stretch; gap: 10px; }
      .top-track-label { border-right: none; padding-right: 0; }

      .track-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 1180px) and (min-width: 761px) {
      .track-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .profile-name {
        max-width: 60px;
      }

      .track-cover { width: 48px; height: 48px; }

      .track-name { font-size: 0.95rem; }

      .track-button {
        min-width: 0;
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.72rem;
      }

      .report-button {
        width: 30px;
      }

      .author-banner { height: 78px; }
      .author-main { margin-top: -30px; gap: 10px; }
      .author-avatar { width: 60px; height: 60px; font-size: 1.4rem; border-width: 3px; }
      .author-name { font-size: 1.15rem; }
      .author-stat-card { padding: 8px 12px; gap: 8px; }
      .stat-icon { font-size: 1.1rem; }
      .stat-value { font-size: 0.92rem; }
      .stat-label { font-size: 0.62rem; }

      .author-badges-section { padding: 0 16px 18px; }
      .mini-badge { width: 32px; height: 32px; font-size: 1.05rem; }
    }

    @media (max-width: 560px) {
      .song-more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .song-more-card {
        gap: 8px;
        padding: 10px;
        border-radius: 14px;
      }

      .song-more-name { font-size: 0.82rem; }

      .song-more-sub { font-size: 0.7rem; }
    }

    @media (max-width: 340px) {
      .topbar { padding: 10px 6px 8px; gap: 6px; }

      .brand-svg.compact { width: 58px; }

      .top-actions { gap: 4px; }

      .lang-btn,
      .profile-btn,
      .menu-toggle {
        width: 32px;
        height: 32px;
      }

      .at-trigger-btn {
        height: 32px;
        padding: 0 8px;
      }
    }
