body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a;
  background: url('../assets/background.png') no-repeat center center fixed;
  background-size: cover;
  color: #f4f4f4;
  line-height: 1.6;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.9); /* dark translucent overlay */
  z-index: -1;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 0 1rem;
}

header {
  text-align: center;
  padding: 3rem 0;
  background: #111;
}

header h1 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

header p {
  font-weight: 300;
  color: #bbb;
}

nav {
  background: #1a1a1a;
  padding: 0.5rem 0;
  text-align: center;
}

nav a {
  color: #f4f4f4;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #6ab534;
}

section {
  padding: 3rem 0;
}

.btn {
  background: #ffcc00;
  color: #0a0a0a;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: #e6b800;
  color: #ffffff;
}

h2 {
  border-bottom: 2px solid #6ab534;
  display: inline-block;
  margin-bottom: 1rem;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.track h3 {
  margin-bottom: 0.5rem;
}

audio {
  width: 100%;
}

#contact a {
  color: #6ab534;
  text-decoration: none;
  font-weight: 500;
}

#contact a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a {
  background: #6ab534;
  color: #0a0a0a;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.social-links a:hover {
  background: #aaaaaa;
  color: #ffffff;
}

footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #999;
}
