:root {
  --bg: #0a0a0a;
  --bg-alt: #131313;
  --fg: #e6e6e6;
  --fg-dim: #8a8a8a;
  --accent: #b30000;
  --border: #2a2a2a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-image:
    radial-gradient(circle at 50% 0%, rgba(179,0,0,0.16), transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.93) 45%, rgba(10,10,10,0.97) 100%),
    url('assets/bg-atmosphere.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

@media (min-width: 768px) {
  body {
    background-attachment: fixed;
  }
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: relative;
  padding: 110px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.logo {
  max-width: 90%;
  width: 480px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(179,0,0,0.5));
}

.tagline {
  margin-top: 14px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.tagline .divider {
  color: var(--accent);
  margin: 0 8px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 34px;
}

.nav a {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav a:hover {
  color: var(--fg);
}

.nav a.active {
  color: var(--fg);
  border-color: var(--accent);
}

section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

h2 {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
  text-align: center;
}

.spotify-wrap {
  display: flex;
  justify-content: center;
}

.spotify-wrap iframe {
  width: 380px;
  max-width: 100%;
  border-radius: 12px;
  border: 0;
}

@media (max-width: 420px) {
  .spotify-wrap iframe {
    width: 320px;
  }
}

.release-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.release {
  display: flex;
  gap: 24px;
}

.release-cover {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.release-body {
  flex: 1;
  min-width: 0;
}

.release-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.release-title {
  margin: 0 0 14px;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--fg);
}

.spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 30px;
  transition: color 0.2s, border-color 0.2s;
}

.spotify-btn svg {
  color: var(--fg-dim);
  transition: color 0.2s;
}

.spotify-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.spotify-btn:hover svg {
  color: var(--accent);
}

.lyrics {
  margin-top: 16px;
}

.lyrics summary {
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-dim);
  list-style: none;
  transition: color 0.2s;
}

.lyrics summary::-webkit-details-marker {
  display: none;
}

.lyrics summary::before {
  content: '+ ';
  color: var(--accent);
}

.lyrics[open] summary::before {
  content: '\2212 ';
}

.lyrics summary:hover {
  color: var(--fg);
}

.lyrics-text {
  white-space: pre-line;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--fg-dim);
  margin: 14px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--border);
}

@media (max-width: 480px) {
  .release {
    flex-direction: column;
  }

  .release-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--fg-dim);
  transition: color 0.2s;
}

a.contact-item:hover {
  color: var(--accent);
  border-color: var(--accent);
}

a.contact-item:hover svg {
  color: var(--accent);
}

.contact-item.email {
  cursor: default;
  user-select: all;
}

footer {
  text-align: center;
  padding: 40px 0 60px;
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 1px;
}
