.audio-samples {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(29, 23, 21, 1) 0%, rgba(19, 28, 25, 1) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
  }
  
  .audio-players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .audio-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .vinyl-container {
    position: relative;
    width: 150px;
    height: 150px;
  }
  
  .vinyl {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: none;
  }
  
  .vinyl.playing {
    animation: spin 3s linear infinite;
  }
  
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--h2-color);
    border: none;
    color: #111;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
  }
  
  
  .play-btn.playing {
    background: var(--h3-color);
  }
  
  .player-controls {
    width: 100%;
    text-align: center;
  }
  
  .sample-title {
    margin: 0.5rem 0;
    color: var(--h2-color);
    font-size: 0.95rem;
  }
  
  .timeline {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
  }
  
  .timeline::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--h2-color);
    cursor: pointer;
    transition: 0.2s;
  }
  
  .timeline::-webkit-slider-thumb:hover {
    background: var(--h3-color);
    transform: scale(1.2);
  }
  
  .timeline::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--h2-color);
    border: none;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .timeline::-moz-range-thumb:hover {
    background: var(--h3-color);
    transform: scale(1.2);
  }
  
  .time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--h3-color);
    margin-top: 0.5rem;
  }