
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0b12;
  color: #f4eee8;
}

.hero {
  text-align: center;
  padding: 90px 20px;
  background: linear-gradient(135deg, #100b13, #33203b, #6b3b2f);
}

.hero h1 {
  font-size: 72px;
  margin: 0;
}

.hero p {
  font-size: 22px;
}

main {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

section {
  margin-bottom: 70px;
}

h2 {
  color: #f2c078;
  font-size: 34px;
}

.albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
}

.album {
  background: #1d1522;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
}

.album img {
  width: 100%;
  border-radius: 12px;
}


.tracks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}


.card {
  background: #1d1522;
  color: #f4eee8;
  text-decoration: none;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  font-size: 22px;
}

.button {
  display: inline-block;
  background: #f2c078;
  color: #0f0b12;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 30px;
  background: #09060b;
}
.album {
  background: white;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.album:hover {
  transform: translateY(-4px);
}
