   body {
    background-color: #f0f2f5;
  }

  /* Card Container Style */
  .music-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
  }

  .music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  /* --- VISUAL PIRINGAN HITAM (VINYL) --- */
  .music-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vinyl-disk {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background-image: repeating-radial-gradient(
      #1a1a1a,
      #1a1a1a 10%,
      #2c2c2c 11%
    );
    transition: transform 0.5s ease;
  }

  .vinyl-label {
    width: 35%;
    height: 35%;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vinyl-label i {
    font-size: 10px;
    color: #555;
  }

  .music-icon-wrapper.playing .vinyl-disk {
    animation: spin 3s linear infinite;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .music-title {
    font-weight: 600;
    font-size: 1rem;
    color: #2d3436;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .music-status {
    font-size: 0.75rem;
    color: #b2bec3;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .controls-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .vinyl-label .btn-play-pause {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3436;
    font-size: 10px;
    box-shadow: 
    0 3px 6px rgba(0,0,0,0.2),
    inset 0 1px 2px rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.2s ease;
  }

  .vinyl-label .btn-play-pause:hover {
    background: #FFC0CB;
    color: #fff;
    border-color: #764ba2;
    transform: scale(1.15);
  }

  .progress-container {
    margin-top: 10px;
  }

  .progress-range {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #dfe6e9;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
  }

  .progress-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #764ba2;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
    transition: transform 0.1s;
  }

  .time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #636e72;
    font-weight: 500;
    margin-top: 5px;
  }