:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --lucy-cyan: #4DD0E1;
  --ellie-amber: #F5A623;
  --text-white: #f0f0f0;
  --text-muted: #888;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg-dark); color: var(--text-white); font-family: 'Inter', sans-serif; line-height: 1.7; }
a { color: var(--lucy-cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
nav { background: rgba(10,10,15,0.95); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(77,208,225,0.2); position: sticky; top: 0; z-index: 100; }
.nav-logo { font-size: 1.2rem; font-weight: 700; }
.nav-logo .l { color: var(--lucy-cyan); }
.nav-logo .e { color: var(--ellie-amber); }
.nav-links { display: flex; gap: 1.5rem; font-size: 0.9rem; }
.hero { background: linear-gradient(135deg, #0a0a0f 0%, #0d1117 100%); padding: 4rem 2rem 3rem; text-align: center; border-bottom: 1px solid rgba(77,208,225,0.1); }
.ep-label { color: var(--ellie-amber); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; max-width: 800px; margin: 0 auto 1.5rem; }
h1 .highlight { color: var(--lucy-cyan); }
.hook { font-size: 1.2rem; color: #ccc; max-width: 700px; margin: 0 auto 2rem; font-style: italic; }
.listen-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.listen-btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.65rem 1.4rem; border-radius: 50px; font-size: 0.88rem; font-weight: 500; text-decoration: none !important; transition: transform 0.2s, box-shadow 0.2s; }
.listen-btn:hover { transform: translateY(-2px); }
.listen-btn.apple { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.listen-btn.spotify { background: #1DB954; color: #000; }
.listen-btn.amazon { background: #232F3E; color: #FF9900; border: 1px solid rgba(255,153,0,0.3); }
.listen-btn.web { background: var(--lucy-cyan); color: #000; }
.content { max-width: 780px; margin: 0 auto; padding: 3rem 2rem; }
.content h2 { color: var(--lucy-cyan); font-size: 1.4rem; margin: 2.5rem 0 1rem; }
.content p { color: #ccc; margin-bottom: 1.2rem; font-size: 1.05rem; }
.content ul { color: #ccc; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.content ul li { margin-bottom: 0.5rem; }
.quote { border-left: 3px solid var(--ellie-amber); padding: 1rem 1.5rem; background: rgba(245,166,35,0.07); border-radius: 0 8px 8px 0; margin: 2rem 0; font-style: italic; color: #ddd; }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.back-link:hover { color: var(--lucy-cyan); text-decoration: none; }
footer { text-align: center; padding: 3rem 1rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.85rem; }
@media (max-width: 600px) { nav { flex-direction: column; gap: 0.75rem; } .nav-links { gap: 1rem; } }
