:root {
  --bg: #0c0906;
  --bg-alt: #17110d;
  --text: #f2e8de;
  --muted: #d8c7b8;
  --accent: #f6a441;
  --accent-strong: #ff6b2d;
  --border: #3b2c20;
  --card: #120d0a;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --max-width: 1080px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 10%, rgba(255, 129, 52, 0.07), transparent 30%),
    radial-gradient(circle at 90% 0, rgba(255, 214, 143, 0.06), transparent 30%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-strong);
}

header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(12, 9, 6, 0.85);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  font-weight: 600;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(120deg, rgba(255, 107, 45, 0.08), rgba(12, 9, 6, 0.6)), var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-content h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.hero-content p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 129, 52, 0.08);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 129, 52, 0.2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag {
  background: rgba(255, 129, 52, 0.12);
  color: var(--text);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.section {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(18, 13, 10, 0.65);
  box-shadow: var(--shadow);
}

.section h2 {
  margin-top: 0;
}

ol.tracklist {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(255, 129, 52, 0.08);
  border: 1px solid var(--border);
}

.track-item span {
  font-weight: 700;
}

.track-embed {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.track-embed iframe {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  background: var(--bg);
}

.hero .track-embed {
  margin-top: 1.25rem;
  padding-top: 0.35rem;
  justify-content: flex-start;
}

.lyrics {
  white-space: pre-wrap;
  line-height: 1.6;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}

footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding: 1.5rem 1.5rem 2.5rem;
  background: #0a0705;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--muted);
}

small {
  color: var(--muted);
}

@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}
