.music-section {
    margin-bottom: 60px;
  }
  
  .music-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
  }
  
  .album-block {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .album-art {
    max-width: 250px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  
  .album-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .album-title {
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #ffffff;
    text-align: center;
  }

  .album-player {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
  }
  .album-player iframe {
    width: 100%;
    max-width: 500px;
  }
  
  .singles-list {
    list-style: none;
    padding: 0;
  }
  
  .singles-list li {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
  }
  
  .single-title {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.2em;
    color: #f0f0f0;
  }
  
  .blog-reference {
    font-size: 1.1em;
    color: #ccc;
  }
  
  .blog-reference a {
    color: #a6d0ff;
    text-decoration: underline;
  }
  