  :root {
      --bg: #050816;
      --bg-soft: #0d1024;
      --text: #ffffff;
      --muted: #aeb7ff;
      --blue: #5b7cff;
      --cyan: #7cf7ff;
      --purple: #c56bff;
      --glass: rgba(255, 255, 255, 0.075);
      --border: rgba(255, 255, 255, 0.14);
      --shadow: 0 30px 100px rgba(91, 124, 255, 0.22);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }
    body {
      min-height: 100vh;
      background:
        radial-gradient(circle at 20% 0%, rgba(91, 124, 255, 0.35), transparent 32%),
        radial-gradient(circle at 80% 10%, rgba(197, 107, 255, 0.22), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(124, 247, 255, 0.12), transparent 35%),
        linear-gradient(135deg, #03040c, var(--bg) 45%, #020207);
      color: var(--text);
      font-family: Inter, Arial, sans-serif;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(124,247,255,0.65) 1px, transparent 1.4px);
      background-size: 90px 90px, 140px 140px;
      background-position: 0 0, 40px 60px;
      opacity: 0.18;
      animation: stars 30s linear infinite;
      z-index: -2;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.55) 100%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

.dark-theme{
       --bg: #08080b;
      --bg-soft: #111116;
      --card: rgba(255, 255, 255, 0.055);
      --card-hover: rgba(255, 255, 255, 0.085);
      --border: rgba(255, 255, 255, 0.11);
      --text: #ffffff;
      --muted: rgba(255, 255, 255, 0.58);
      --muted-2: rgba(255, 255, 255, 0.38);
      --pink: #ec4899;
      --red: #ef4444;
      --purple: #a855f7;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
    .page {
      display: grid;
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
      padding: 36px 0 28px;
    }

    .hero {
      display: grid;
      grid-template-columns: 1.1fr 1.4fr;
      gap: 24px;
      align-items: stretch;
      margin-bottom: 24px;
    }

    .hero-top {
      display: grid;
      grid-template-columns: 1.1fr 1.4fr;
      gap: 24px;
      align-items: stretch;
      margin-bottom: 24px;
    }
   

    .brand-card,
    .cover-card,
    .playlist {
      border: 1px solid var(--border);
      background: var(--bg-card);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
      border-radius: 28px;
      overflow: hidden;
    }

    .brand-card {
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 292px;
    }

    .brand-card-top {
      padding: 32px;
      display: flex;
      justify-content: center;
      width: 100%;
      min-height: 292px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
      border-radius: 28px;
      overflow: hidden;
    }

    .logo-row-top {
      position: relative;
      left: 80px;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 38px;
    }

    .logo-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 38px;
    }

    .logo-row img {
      width: 84px;
      height: 84px;
      border-radius: 16px;
      object-fit: cover;
      box-shadow: 0 12px 30px rgba(34, 200, 160, 0.25);
    }

    .logo-row strong {
      font-size: 18px;
      letter-spacing: 0.18em;
    }

    .hero h1 {
      margin: 0 0 14px;
      font-size: clamp(38px, 8vw, 78px);
      line-height: 0.95;
      letter-spacing: -0.06em;
    }

    .hero p {
      margin: 0;
      max-width: 520px;
      color: var(--text-muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .cover-card {
      position: relative;
      min-height: 292px;
      background: linear-gradient(135deg, rgba(34, 200, 160, 0.14), rgba(124, 92, 255, 0.16));
    }

    .cover-card img {
      width: 100%;
      height: 100%;
      min-height: 292px;
      object-fit: cover;
      display: block;
      opacity: 0.92;
    }

    .cover-badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(8, 11, 22, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: var(--text-main);
      font-size: 14px;
    }

    .playlist { padding: 18px; }

    .section-title {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 16px;
      padding: 8px 10px 18px;
    }

    .section-title h2 {
      margin: 0;
      font-size: 26px;
      letter-spacing: -0.03em;
    }

    .section-title span { color: var(--text-muted); font-size: 14px; }

    .track-list {
      display: grid;
      gap: 14px;
    }

     .track-card {
      display: grid;
      grid-template-columns: minmax(230px, 1fr) minmax(120px, 120px) auto;
      gap: 16px;
      align-items: center;
      height: 70px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      background: rgba(255, 255, 255, 0.065);
      border-radius: 22px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

       .track-card-top {
      display: grid;
      grid-template-columns: minmax(160px, 1fr) minmax(20px, 100%) auto;
      gap: 1px;
      align-items: center;
      height: 80px;
      padding: 16px;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.11);
      background: rgba(255, 255, 255, 0.065);
      border-radius: 22px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

     .track-card-top:hover {
      transform: translateY(-2px);
      border-color: rgba(34, 200, 160, 0.48);
      background: rgba(255, 255, 255, 0.095);
    }

    .track-card-top.active {
      border-color: rgba(91, 124, 255, 0.8);
      background: rgba(91, 124, 255, 0.15);
      box-shadow: 0 0 20px rgba(91, 124, 255, 0.3);
    }

    .track-card:hover {
      transform: translateY(-2px);
      border-color: rgba(34, 200, 160, 0.48);
      background: rgba(255, 255, 255, 0.095);
    }

    .track-card.active {
      border-color: rgba(91, 124, 255, 0.8);
      background: rgba(91, 124, 255, 0.15);
      box-shadow: 0 0 20px rgba(91, 124, 255, 0.3);
    }


    

       .track-info-top {
          position: relative;
          right: 100px;
         bottom: 25px;
    
    }

    .track-number {
      flex: 0 0 auto;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #06120f;
      font-weight: 700;
    }

      .track-number-top {
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      display: grid;
      position: relative;
      right: 14px;
      bottom: 12px;
      place-items: center;
      border-radius: 5px;
      color: #06120f;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent), #a9ffdf);
    }
     .track-current-number {
      flex: 0 0 auto;
      width: 44px;
      height: 44px;
      display: grid;
      position: relative;
      top:12px;
      place-items: center;
      border-radius: 14px;
      color: #06120f;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent), #a9ffdf);
    }

    .current-t{
      position: absolute;
      left: 315px;
    }
    .track-info h2 {
      margin: 0 0 5px;
      font-size: 16px;
      line-height: 1.35;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

     .track-info-top h5 {
      font-size: 12px;
      white-space: nowrap;
    }

    .track-info p {
      margin: 0;
      color: var(--text-muted);
      font-size: 13px;
    }

    audio {
      width: 100%;
      height: 42px;
      accent-color: var(--accent);
    }

    .favorites {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 0;
    bottom: 15px;
    min-height: 32px;
    width: 32px;
    padding: 0 18px;
    border-radius: 50%;
    color: #06120f;
    font-weight: 700;
    background-image: url(https://img.icons8.com/?size=100&id=BdjA3Y8bTxW8&format=png&color=000000);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: center;
    box-shadow: 0 14px 28px rgba(34, 200, 160, 0.2);
    transition: transform .2s ease, filter .2s ease;
    white-space: nowrap;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(34, 200, 160, 0.3));
    }

    .favorites::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ff3d91;
    opacity: 0.3;
    transition: opacity .2s ease;
    filter: drop-shadow(0 4px 8px rgba(34, 200, 160, 0.3));
    }

    .favorites-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 0;
    bottom: 15px;
    min-height: 32px;
    width: 32px;
    padding: 0 18px;
    border-radius: 50%;
    color: #06120f;
    font-weight: 700;
    background-image: url(https://img.icons8.com/?size=100&id=pre7LivdxKxJ&format=png&color=000000);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
    box-shadow: 0 14px 28px rgba(34, 200, 160, 0.2);
    transition: transform .2s ease, filter .2s ease;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(34, 200, 160, 0.3));
    white-space: nowrap;
    }

     .favorites-delete::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ef9bbf;
    opacity: 0.7;
    transition: opacity .2s ease;
    filter: blur(15px);
    }

    .favorites:hover { transform: translateY(-1px); filter: brightness(1.04); }
    .favorites-delete:hover { transform: translateY(-1px); filter: brightness(1.04); }

         .play-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      left:90px;
      bottom: 15px;
      min-height: 32px;
      width: 32px;
      padding: 0 18px;
      border-radius: 50%;
      color: #06120f;
      font-weight: 700;
      background-color: linear-gradient(135deg, var(--accent), #a9ffdf);
      background-image: url(https://img.icons8.com/?size=100&id=GwYlS5m5Goz6&format=png&color=000000);
      background-repeat: no-repeat;
      background-size: 20px 20px;
      background-position: center;  
      box-shadow: 0 14px 28px rgba(34, 200, 160, 0.2);
      transition: transform .2s ease, filter .2s ease;
      opacity: 0.9;
      filter: drop-shadow(0 4px 8px rgba(34, 200, 160, 0.3));
      white-space: nowrap;
    }

    

      #play-btn-top {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 15px;
      width: 15px;
      position: relative;
      bottom: 10px;
      right: 0;
      color: #06120f;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent), #a9ffdf);
      background-image: url(https://img.icons8.com/?size=100&id=GwYlS5m5Goz6&format=png&color=000000);
      background-repeat: no-repeat;
      background-position: center;  
      background-size: 20px 20px;
      box-shadow: 0 14px 28px rgba(34, 200, 160, 0.2);
      transition: transform .2s ease, filter .2s ease;
      white-space: nowrap;
    }

   .play-btn-pay {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 15px;
      width: 15px;
      padding: 0 15px;
      border-radius: 10px;
      color: #06120f;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent), #a9ffdf);
      background-image: url(https://img.icons8.com/?size=100&id=GwYlS5m5Goz6&format=png&color=000000);
      background-repeat: no-repeat;
      background-position: center;  
      background-size: 20px 20px;
      box-shadow: 0 14px 28px rgba(34, 200, 160, 0.2);
      transition: transform .2s ease, filter .2s ease;
      white-space: nowrap;
    }

.play-btn-next{
   display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 15px;
      width: 15px;
      padding: 0 15px;
      border-radius: 10px;
      color: #06120f;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent), #a9ffdf);
      background-image: url(https://img.icons8.com/?size=100&id=izvhCwyFykPG&format=png&color=000000);
      background-repeat: no-repeat;
      background-position: center;  
      background-size: 20px 20px;
      box-shadow: 0 14px 28px rgba(34, 200, 160, 0.2);
      transition: transform .2s ease, filter .2s ease;
      white-space: nowrap;

}

.play-btn-back{
   display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 15px;
      width: 15px;
      padding: 0 15px;
      border-radius: 10px;
      color: #06120f;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent), #a9ffdf);
      background-image: url(https://img.icons8.com/?size=100&id=RV1ZBw3fSX31&format=png&color=000000);
      background-repeat: no-repeat;
      background-position: center;  
      background-size: 20px 20px;
      box-shadow: 0 14px 28px rgba(34, 200, 160, 0.2);
      transition: transform .2s ease, filter .2s ease;
      white-space: nowrap;

}
    .play-btn:hover { transform: translateY(-1px); filter: brightness(1.04); }

      .pause-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      width: 100px;
      padding: 0 18px;
      border-radius: 14px;
      color: #06120f;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent), #a9ffdf);
      background-image: url(https://img.icons8.com/?size=100&id=Z2aInWmsldJ6&format=png&color=000000);
      background-repeat: no-repeat;
      background-position: center;  
      background-size: 20px 20px;
      box-shadow: 0 14px 28px rgba(34, 200, 160, 0.2);
      transition: transform .2s ease, filter .2s ease;
      white-space: nowrap;
    }

    .pause-btn:hover { transform: translateY(-1px); filter: brightness(1.04); }

    #volumeSlider {
      position: relative;
      bottom: 20px;
      width: 100px;
      margin-top: 8px;
      cursor: pointer;
    }

    .volume-control {
      position: relative;
      bottom: 17px;
      left: 10px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url(https://img.icons8.com/?size=100&id=XICBC6Cy7j1f&format=png&color=000000);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    } 

    #seekBar {
      margin-top: 8px;
      cursor: pointer;
    }

    #info{
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    top: 10px;
    left: 15px;
    }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  background: #0f62ce; 
  border-radius: 4px;
}


input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(135deg, var(--accent), #a9ffdf);
  border-radius: 50%;
  margin-top: -6px; 
  cursor: pointer;
}

    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin: 24px 0 8px;
    }

    .pagination a {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.07);
      color: var(--text-main);
      font-weight: 700;
    }

    .pagination a.active,
    .pagination a:hover {
      background: var(--accent);
      color: #06120f;
    }

      .hero-player {
      position: fixed;
      overflow: hidden;
      z-index:9999; 
      width: 100%; 
      bottom: 0; 
      left: 0; 
      right: 0;
      padding: 32px 18px;
      border-radius: 28px 28px 0 0;
      background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 34%),
        linear-gradient(135deg, #16182f 0%, #2a195d 48%, #0f1020 100%);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    }

    .hero-player::before,
    .hero-player::after {
      content: "";
      position: absolute;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      filter: blur(4px);
      pointer-events: none;
    }

    .hero-player::before {
      top: -80px;
      right: -60px;
    }

    .hero-player::after {
      bottom: -95px;
      left: -65px;
    }



    .hero-player .track-info {
      align-items: center;
      gap: 16px;
    }

    .hero-player .track-current-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 58px;
      height: 58px;
      border-radius: 18px;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, #ff4ecd, #7c5cff);
      box-shadow: 0 12px 28px rgba(124, 92, 255, 0.38);
    }

    .hero-player #info {
      margin: 0;
      color: #fff;
      font-size: clamp(20px, 4vw, 34px);
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .hero-player .current-t {
      color: rgba(255, 255, 255, 0.78);
      font-weight: 600;
    }

    .hero-player input[type="range"] {
      width: 100%;
      accent-color: #ff4ecd;
      cursor: pointer;
    }

    .hero-track-controls {
      display: flex;
      gap: 14px;
      justify-content: left;
      margin-top: 22px;
      flex-wrap: wrap;
    }

    .hero-track-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 148px;
      padding: 14px 22px;
      border: 0;
      border-radius: 999px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.01em;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.14);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 14px 28px rgba(0, 0, 0, 0.20);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .hero-track-btn-next {
      background: linear-gradient(135deg, #ff4ecd, #7c5cff);
      box-shadow: 0 16px 34px rgba(124, 92, 255, 0.42);
    }

    .hero-track-btn:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.22);
    }

    .hero-track-btn-next:hover {
      background: linear-gradient(135deg, #ff68d6, #8f73ff);
    }

    .hero-track-btn:active {
      transform: translateY(0) scale(0.98);
    }

    .hero-track-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      font-size: 28px;
      line-height: 1;
    }

    @media (max-width: 560px) {
      .hero-player {
        padding: 20px 12px;
        border-radius: 22px;
      }

    .hero-track-btn {
      width: 100%;
    }
  }

   .section-popular {
      margin: 46px 0;
    }

    .section-head-popular p {
      display: flex;
      align-items: end;
      justify-content: space-between;
      margin-bottom: 22px;
    }

    .section-popular h2 {
      font-size: 28px;
      letter-spacing: -0.04em;
    }
  
    .see-all {
      color: #c084fc;
      font-weight: 600;
      font-size: 14px;
    }
 .playlists {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .playlist-card {
      position: relative;
      min-height: 220px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      background: #111827;
    }

    .playlist-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.76) 72%);
      z-index: 1;
    }

    .playlist-card > * { position: relative; z-index: 2; }
    .playlist-card h3 { margin-bottom: 7px; }
    .playlist-card p { color: #d4d4d8; font-size: 14px; }

    .p1 { background: radial-gradient(circle at 48% 38%, #8b5cf6, #111827 62%); }
    .p2 { background: linear-gradient(135deg, #7c2d12, #312e81); }
    .p3 { background: linear-gradient(135deg, #111827, #52525b); }
    .p4 { background: linear-gradient(135deg, #020617, #0369a1); }
    .p5 { background: linear-gradient(135deg, #7f1d1d, #7e22ce); }
    .tracks {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .card {
      min-width: 0;
      padding: 8px 8px 14px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: var(--panel);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      border-color: rgba(168, 85, 247, .45);
      background: rgba(30, 41, 59, .78);
    }

    .art {
      position: relative;
      aspect-ratio: 1;
      border-radius: 12px;
      margin-bottom: 13px;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #312e81, #be185d);
    }

    .art:nth-child(odd) { background: linear-gradient(135deg, #164e63, #7e22ce); }

    .art .play-mini,
    .playlist-art .play-mini {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: rgba(0,0,0,.46);
      backdrop-filter: blur(8px);
    }

    .card h3 {
      padding: 0 8px;
      font-size: 15px;
      margin-bottom: 7px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .card p {
      padding: 0 8px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.04em;
      font-size: 24px;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--violet), var(--pink));
      box-shadow: 0 0 38px rgba(168, 85, 247, 0.62);
    }

    .logo small {
      color: var(--violet-2);
      font-size: 13px;
      margin-left: 3px;
      letter-spacing: 0;
    }

 .footer {
      margin-top: 58px;
      padding: 44px 0 26px;
      border-top: 1px solid var(--line);
      color: #d4d4d8;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 36px;
    }

    .footer p,
    .footer a {
      color: var(--muted);
      line-height: 1.8;
      font-size: 14px;
    }

    .footer h3 {
      color: white;
      font-size: 16px;
      margin-bottom: 12px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      color: var(--muted-2);
      font-size: 13px;
    }

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a00, #ff2d55);
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: .3s ease;
  z-index: 9999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
}



@media (max-width: 768px) {
  .scroll-top {
    right: 16px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
    body{
    overflow-x: hidden;
  }
}
    @media (max-width: 860px) {
      .hero { grid-template-columns: 1fr; }
      .track-card { grid-template-columns: 1fr;height: 80px; }
      .download-btn { width: 100%; }
      .section-title { align-items: start; flex-direction: column; }
      #seekBar { width: 98%;top: 0; }
      .current-t{left: 105px;}
      .volume-control { left: 10px; }
      .track-card-top{width: 100%; left: 0;grid-template-columns: minmax(180px, 1fr) minmax(120px, 100%);}
      #play-btn-top{position: relative;left: 270px;bottom: 50px;}
      .logo-row-top{left: 80px;}
      .hero-top{grid-template-columns: auto;}
      .track-info-top h5 {font-size: 12px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
      #info {position: relative;left: 0;top: -10px ;text-align: center; font-size: 18px;}
      .play-btn{position: relative;left: 230px;bottom: 80px;}
      .footer-bottom { flex-direction: column; }
       .footer-grid { grid-template-columns: 1fr 1fr; }
     body{
    overflow-x: hidden;
  }
    }
     @media (max-width: 476px) {
.play-btn{
    left: 280px;
}
.trackTitles {
    width: 180px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    }
.tracks {
      grid-template-columns: repeat(1, 1fr);
    }
 body{
    overflow-x: hidden;
  }
     }

    @media (max-width: 376px) {
  .play-btn {
    left: 280px;
  }

  .trackTitles {
    width: 180px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    }

  body{
    overflow-x: hidden;
  }
}

  @media (max-width: 321px) {
  .play-btn {
    left: 228px;
  }
  body{
    overflow-x: hidden;
  }
}