body {
  margin: 0;
  background: #0d0d0d;
  color: #f9f9f9;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 480px;
  padding: 2rem 1rem;
}

.logo {
  max-width: 200px;
  margin-bottom: 2rem;
}

.cover-art {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.tagline {
  color: #f1c40f;
  font-weight: 600;
  margin: 0.5rem 0;
}

.title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.buttons .btn {
  display: block;
  background: #f1c40f;
  color: #000;
  text-decoration: none;
  margin: 0.5rem auto;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: bold;
  width: 80%;
  max-width: 300px;
}

.countdown-label {
  margin-top: 2rem;
  color: #f1c40f;
}

.countdown {
  display: flex;
  justify-content: space-around;
  margin: 1rem auto;
  max-width: 300px;
}

.countdown div {
  text-align: center;
}

.countdown span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.email-form input, .email-form button {
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.email-form input {
  background: #f4f4f4;
  color: #000;
}

.email-form button {
  background: #f1c40f;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

footer {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #666;
}

.previous-releases {
  margin-top: 3rem;
  text-align: center;
  color: #ffd700;
}

.previous-releases h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.release-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.release {
  background: #111;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.1);
}

.track-title {
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #fff;
}

.platform-links img {
  width: 30px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.platform-links img:hover {
  transform: scale(1.15);
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.fa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  border-radius: 50%;
  color: white;
  transition: transform 0.2s ease, background-color 0.3s ease;
  text-decoration: none;
}

.fa-btn.youtube {
  background-color: #ff0000;
}

.fa-btn.spotify {
  background-color: #1db954;
}

.fa-btn.apple {
  background-color: #000000;
}

.fa-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

footer a {
  color: #f1c40f; /* Use your site’s yellow/gold highlight */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: none; /* Optional: removes underline on hover */
}

.cover-video {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin: 1rem auto;
  display: block;
}
