/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #1e1e2f, #2d2d44);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  background-color: #2b2b3c;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 600px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

h2 {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
}

p {
  margin-bottom: 1rem;
}

.player {
  margin-bottom: 1.5rem;
}

audio {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.toggle-button {
  background-color: #7f5af0;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.toggle-button:hover {
  background-color: #6245c7;
}

.metadata {
  margin-top: 1rem;
  text-align: left;
}

.metadata p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
}

.image {
  margin-top: 1rem;
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}