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

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #000;
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at center, #200 0%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,0,0,0.3), rgba(255,255,0,0.3));
  mix-blend-mode: overlay;
}

.content {
  position: relative;
  z-index: 1;
  padding: 1rem;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #ff0000;
}

.hero h2 {
  font-size: 2rem;
  color: #ffff00;
  margin: 0.5rem 0;
}

.release-date {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.album-cover {
  width: 100%;
  max-width: 300px;
  margin: 1rem auto;
  border: 5px solid #ff0000;
  display: block;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #ff0000;
  color: #ff0000;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #ff0000;
  color: #000;
}

.about {
  padding: 2rem;
  text-align: center;
  font-size: 1.25rem;
  color: #ccc;
}

.disabled {
  pointer-events: none; /* Disable pointer events (mouse clicks) */
  color: gray;          /* Change text color to indicate that it's disabled */
  text-decoration: none; /* Optionally remove underline */
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero h2 {
    font-size: 1.5rem;
  }
  .button {
    padding: 0.5rem 1rem;
  }
}
