:root {
  --bg: #050505;
  --panel: rgba(7, 17, 38, 0.88);
  --panel2: rgba(11, 45, 77, 0.92);
  --text: #ffffff;
  --muted: #cbd5e1;
  --gold: #D4AF37;
  --blue: #1E90FF;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(30, 144, 255, 0.25), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.16), transparent 32%),
    var(--bg);
  color: var(--text);
}
a { color: inherit; }
.app-shell { min-height: 100vh; }
.hero {
  min-height: 86vh;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(7, 17, 38, 0.97), rgba(11, 45, 77, 0.88)),
    radial-gradient(circle at center, rgba(30, 144, 255, 0.24), transparent 45%);
  border-bottom: 1px solid var(--line);
}
.topbar {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 2px solid rgba(212, 175, 55, 0.55);
}
.eyebrow {
  margin: 0 0 4px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.1;
}
.install-btn,
.primary-btn,
.secondary-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}
.install-btn,
.primary-btn {
  background: linear-gradient(135deg, var(--gold), #ffe38a);
  color: #071126;
}
.secondary-btn {
  background: rgba(255, 255, 255, 0.10);
  color: var(--text);
  border: 1px solid var(--line);
}
.hero-content {
  max-width: 820px;
  margin: 46px auto 0;
  text-align: center;
}
.main-logo {
  width: min(330px, 78vw);
  border-radius: 32px;
  margin-bottom: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.verse {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.6;
  margin: 0;
}
.verse-ref {
  color: var(--gold);
  font-weight: 800;
  margin: 10px 0 26px;
}
.player-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 17, 38, 0.94), rgba(5, 5, 5, 0.88));
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--gold);
  font-weight: 700;
  background: rgba(212, 175, 55, 0.10);
}
.dot {
  width: 10px;
  height: 10px;
  background: #ff2d2d;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 45, 45, 0.12);
}
.player-card h2 {
  margin: 18px 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}
audio {
  width: 100%;
  margin: 8px 0 18px;
}
.player-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.now-playing {
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}
.label {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
#songTitle {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 24px 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card,
.about,
.links {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3,
.about h2,
.links h2 {
  margin-top: 0;
  color: var(--gold);
}
.card p,
.about p {
  color: var(--muted);
  line-height: 1.65;
}
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.link-row a {
  text-decoration: none;
  background: var(--panel2);
  border: 1px solid rgba(30, 144, 255, 0.35);
  border-radius: 999px;
  padding: 12px 16px;
  color: white;
  font-weight: 700;
}
footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 28px;
  color: var(--muted);
  text-align: center;
}
.small {
  font-size: 0.86rem;
  opacity: 0.75;
}
@media (max-width: 760px) {
  .hero {
    padding: 18px;
    min-height: auto;
  }
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .brand-logo {
    width: 58px;
    height: 58px;
  }
  .hero-content {
    margin-top: 32px;
  }
  .main-logo {
    width: min(285px, 84vw);
    border-radius: 28px;
  }
  .player-card {
    padding: 22px;
    border-radius: 24px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}
