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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  line-height: 1.6;
  text-align: center;
  padding-bottom: 50px;
}

header {
  background: rgba(0, 0, 0, 0.4);
  padding: 25px 10px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

header h1 {
  font-size: 2rem;
  letter-spacing: 1px;
  color: #00e0ff;
}

header p {
  color: #ccc;
  margin-top: 8px;
}

.music-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  width: 90%;
  max-width: 400px;
  margin: 25px auto;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.music-card h2 {
  color: #00eaff;
  margin-bottom: 8px;
}

.music-card p {
  margin: 8px 0;
}

audio {
  width: 100%;
  margin-top: 10px;
  outline: none;
  border-radius: 10px;
}

.music-cover {
    width: 100%;            
    height: 180px;         
    object-fit: cover;       
    border-top-left-radius: 15px; 
    border-top-right-radius: 15px; 
}

.music-card {
    background: #12431523;          
    border-radius: 15px;      
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    overflow: hidden;        
    text-align: center;        
    padding-bottom: 15px;      
    transition: transform 0.3s ease; 
}

.music-card:hover {
    transform: scale(1.05);
}


.music-card .desc {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 10px;
}

footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
