:root {
  --bg: #1a1510;
  --surface: #2a221b;
  --text: #f5f0eb;
  --muted: #b8aa9a;
  --accent: #c9a86c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Noto Sans Ethiopic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(26, 21, 16, 0.55) 0%, rgba(26, 21, 16, 0.92) 100%),
    url('assets/dereje.jpg') center/cover no-repeat;
  padding: 120px 20px 100px;
  text-align: center;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin: 0;
  color: var(--accent);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 12px 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.hero .intro {
  font-size: 1.1rem;
  margin-top: 28px;
  color: var(--text);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

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

section {
  margin-bottom: 56px;
}

section h2 {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
}

.bio p {
  margin-bottom: 14px;
}

.album {
  background: rgba(42, 34, 27, 0.78);
  border: 1px solid rgba(201, 168, 108, 0.12);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.album h3 {
  margin: 0 0 12px;
  color: var(--accent);
}

.album .en {
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 8px;
}

.album ul {
  columns: 2;
  column-gap: 24px;
  padding-left: 18px;
}

.album li {
  margin-bottom: 6px;
  break-inside: avoid;
}

.lyrics-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  text-decoration: underline;
}

footer {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
  font-size: 0.9rem;
}

#visualizer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.enter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 11, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.enter-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.enter-card {
  text-align: center;
  padding: 40px;
  border-radius: 12px;
  background: rgba(42, 34, 27, 0.7);
  border: 1px solid rgba(201, 168, 108, 0.3);
  max-width: 420px;
  backdrop-filter: blur(8px);
}

.enter-card h2 {
  color: var(--accent);
  margin: 0 0 8px;
}

.enter-card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.enter-btn {
  background: var(--accent);
  color: #12100d;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 99px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4);
}

.audio-control {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(42, 34, 27, 0.85);
  border: 1px solid rgba(201, 168, 108, 0.25);
  padding: 8px 14px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
}

.mute-btn {
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
}

.track-label {
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 560px) {
  .enter-card {
    padding: 28px;
    margin: 0 20px;
  }

  .enter-btn {
    padding: 12px 22px;
  }

  .album ul {
    columns: 1;
  }

  .audio-control {
    bottom: 12px;
    right: 12px;
  }
}
