:root{
  /* Softer, modern dark palette (less blue) */
  --bg: #0b0f14;        /* near-black */
  --surface:#0f151c;    /* subtle surface */
  --card:#111a24;       /* cards */
  --text:#eef2f8;
  --muted:#a7b3c6;
  --line: rgba(167,179,198,.18);
  --shadow: 0 10px 26px rgba(0,0,0,.24);
  --radius: 18px;
  --max: 1100px;

  --accent: #ffffff;    /* primary button */
  --danger: #ff3b3b;    /* YouTube */
  --focus: rgba(255,255,255,.10);
}

*{box-sizing:border-box}
html{ -webkit-text-size-adjust: 100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(120,140,255,.10), transparent 58%),
    radial-gradient(820px 420px at 92% 0%, rgba(255,59,59,.07), transparent 60%),
    var(--bg);
  color:var(--text);

  /* Make footer sit at the bottom without leaving huge blank gaps */
  min-height: 100vh;
  display:flex;
  flex-direction:column;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.68);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand-badge{
  width:36px;height:36px;border-radius:12px;
  background: linear-gradient(135deg, rgba(255,255,255,.90), rgba(167,179,198,.65));
  color:#0b0f14; font-weight:900; display:grid; place-items:center;
}
.brand strong{display:block; line-height:1.1}
.brand small{display:block; color:var(--muted); font-size:12px; margin-top:2px}

nav{display:flex; gap:6px; flex-wrap:wrap}
nav a{
  padding:8px 10px;
  border-radius:12px;
  color:var(--muted);
  border: 1px solid transparent;
}
nav a:hover{background: rgba(255,255,255,.04); color:var(--text)}
nav a.active{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border-color: var(--line);
}

.actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight:800;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn.primary{background: var(--accent); color:#0b0f14; border-color: rgba(255,255,255,.22)}
.btn.youtube{background: rgba(255,59,59,.90); border-color: rgba(255,59,59,.30)}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06)}
.btn.primary:hover{background: rgba(255,255,255,.92)}
.btn.youtube:hover{background: rgba(255,59,59,.96)}
.btn:active{transform: translateY(0)}

.menu-btn{
  display:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight:800;
}

.mobile-menu{display:none; padding: 0 0 14px}
.mobile-menu.open{display:block}
.mobile-menu a{display:block; padding:10px 10px; border-radius:12px}

main{
  flex: 1;                 /* <— key: takes remaining height */
  padding: 22px 0 22px;    /* less bottom padding */
}

.hero{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.02);
}
.hero img{width:100%; display:block}

.page-title{
  margin:18px 0 0;
  font-size:36px;
  letter-spacing:.2px;
}
.lead{
  color:var(--muted);
  line-height:1.75;
  margin:10px 0 0;
  max-width: 72ch;
}

.card{
  background: linear-gradient(180deg, rgba(17,26,36,.88), rgba(13,19,27,.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}

.grid{display:grid; gap:14px}
.grid-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3, minmax(0,1fr))}

.section{margin-top:18px}
.section h2{margin:0 0 8px; font-size:20px}
.helper{color:var(--muted); font-size:13px; line-height:1.7}

.embed{width:100%; border:0; border-radius:16px; overflow:hidden; background:#000}
.embed.spotify{height:352px}
.embed.youtube{aspect-ratio:16/9}

footer{
  border-top:1px solid var(--line);
  padding:18px 0 20px;
  color:var(--muted);
  font-size:13px;
}

@media (max-width: 980px){
  .grid-2,.grid-3{grid-template-columns:1fr}
  .page-title{font-size:30px}
  nav{display:none}
  .menu-btn{display:inline-flex}
}