body {
  margin: 0;
  padding: 0;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Segoe UI", sans-serif;
}

.card {
  background: #2a2a2a;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.card img {
  width: 50%;
  display: block;
  margin: 0 auto;
  border-bottom: 2px solid #444;
}

.card-content {
  padding: 20px;
}

.card h1 {
  margin: 0 0 10px;
  font-size: 28px;
}

.card p {
  font-size: 16px;
  line-height: 1.5;
  color: #ccc;
}

.music-controls {
  margin-top: 20px;
}

button {
  background-color: #ff69b4;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ff4d9b;
}

