:root {
--black: #000000;
--purple: #8f5bff;
--pink: #ff4fd8;
--text: #e6e6eb;
--muted: #9a9aa5;
}

* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: #000000;
background-image: radial-gradient(
circle at top,
rgba(40, 10, 60, 0.25) 0%,
rgba(10, 0, 20, 0.15) 35%,
#000000 75%,
#000000 100%
);
color: var(--text);
min-height: 100vh;
}

/* HERO */

.hero {
padding: 4rem 2rem;
text-align: center;
}

@keyframes neonPulse {
0% {
text-shadow:
0 0 6px rgba(255, 79, 216, 0.4),
0 0 18px rgba(143, 91, 255, 0.25);
}
50% {
text-shadow:
0 0 12px rgba(255, 79, 216, 0.8),
0 0 36px rgba(143, 91, 255, 0.6);
}
100% {
text-shadow:
0 0 6px rgba(255, 79, 216, 0.4),
0 0 18px rgba(143, 91, 255, 0.25);
}
}


.hero h1 {
font-family: 'Syne', 'Space Grotesk', 'Oxanium', sans-serif;
font-size: clamp(3.5rem, 8vw, 6rem);
font-weight: 800;
letter-spacing: 0.08em;
color: var(--pink);
margin: 0;
animation: neonPulse 4.5s ease-in-out infinite alternate;
}
.tagline {
color: var(--muted);
margin-top: 0.5rem;
}

.hero h1:hover {
animation-duration: 1.5s;
}

@media (prefers-reduced-motion: reduce) {
.hero h1 {
animation: none;
}
}


/* SONG LIST */

.song-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
padding: 2rem;
}

.song-card {
text-decoration: none;
border: 1px solid rgba(143, 91, 255, 0.3);
padding: 1.5rem;
background: rgba(0, 0, 0, 0.4);
transition: transform 0.2s, box-shadow 0.2s;
}

.song-card h2 {
color: var(--purple);
margin: 0;
}

.song-card p {
color: var(--muted);
font-size: 0.9rem;
}

.song-card:hover {
transform: translateY(-4px);
box-shadow: 0 0 25px rgba(143, 91, 255, 0.4);
}

/* NAV */

.nav {
padding: 1rem 2rem;
}

.nav a {
color: var(--pink);
text-decoration: none;
}

/* SONG PAGE */

.song-page {
max-width: 800px;
margin: auto;
padding: 2rem;
}

.song-page h1 {
font-family: 'Orbitron', sans-serif;
color: var(--pink);
}

section {
margin-top: 3rem;
}

section h2 {
color: var(--purple);
margin-bottom: 1rem;
}

.lyrics pre {
background: rgba(0, 0, 0, 0.6);
padding: 1.5rem;
border-left: 3px solid var(--pink);
font-family: 'Inter', monospace;
white-space: pre-wrap;
}

.story {
max-width: 65ch;
}

.story p {
line-height: 1.7;
margin-bottom: 1.4rem;
letter-spacing: 0.01em;
color: #d8d8e3;
}

.story p:last-child {
margin-bottom: 0;
}

/* FOOTER */

footer {
text-align: center;
padding: 2rem;
color: var(--muted);
font-size: 0.8rem;
}