:root {
  --bg: #0b0b0b;
  --card: #161616;
  --text: #ffffff;
  --muted: #b3b3b3;
  --green: #1db954;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #141414, #000);
  color: var(--text);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 40px;
}

.icon {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 10px;
}

.hero h1 {
  font-weight: 500;
  font-size: 42px;
  margin: 0;
}

.subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.card.album-card {
  text-align: center;
}

/* Cards */
.card {
  background: linear-gradient(180deg, #1b1b1b, #121212);
  border-radius: 16px;
  padding: 32px;
  margin: 30px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.album-card h2 {
  margin-top: 0;
  font-weight: 500;
}

.album-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Spotify button */
.spotify-button {
  display: inline-block;
  margin-top: 20px;
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.spotify-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(29,185,84,0.4);
}

/* Image */
.image-section {
  margin: 40px 0;
}

.image-section img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* Live section */
.live {
  text-align: center;
  margin-bottom: 40px;
}

.live h3 {
  font-weight: 500;
}

.live p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact */
.contact-card {
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}

.email-btn,
.insta-btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  background: #fff;
}

.insta-btn {
  background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

footer {
  font-size: 12px;
  color: var(--muted);
}
