:root{
  --bg:#0b0c10;
  --panel:#12131a;
  --text:#f2f3f5;
  --muted:#b7bac3;
--accent: #06b6d4; /* cyan */
  --border:rgba(124,58,237,.20)
rgba(124,58,237,.12)
  --max:1080px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Helvetica,Arial,sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(6,182,212,.16), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(6,182,212,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.9; }

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background:rgba(11,12,16,.65);
  border-bottom:1px solid var(--border);
}

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

.brand{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand strong{ font-size:14px; letter-spacing:.08em; text-transform:uppercase; }
.brand span{ font-size:12px; color:var(--muted); }

.menu{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.menu a{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:10px;
}
.menu a.active, .menu a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}

/* Top-right Support button */

/* Top-right Support button */

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:14px;
  background:#f5f2e8;
  color:#111;
  font-weight:500;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.08);
  transition:background-color .18s ease, color .18s ease, border-color .18s ease;
}

.cta:hover{
  background:#fffdf8;
  color:#111;
  border-color:rgba(255,255,255,.18);
  box-shadow:none;
  transform:none;
  opacity:1;
}

.hero{
  padding:70px 0 34px;
}
.kicker{
  color:var(--accent);
  letter-spacing:.10em;
  font-size:12px;
  text-transform:uppercase;
}
h1{
  font-size:46px;
  line-height:1.05;
  margin:12px 0 14px;
}
.subhead{
  color:var(--muted);
  max-width:70ch;
  font-size:16px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:16px;
  margin:24px 0 60px;
}
.music-grid .card{
  grid-column: span 6;
  text-align: center;
}

.music-grid h3{
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 20px;
}

.music-grid p{
  margin: 4px 0 12px 0;
  opacity: .75;
  font-size: 14px;
}
.card{
  grid-column: span 6;
  background:rgba(18,19,26,.70);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}
.card h3{ margin:0 0 6px; font-size:16px; }
.card p{ margin:0 0 14px; color:var(--muted); }
.card .links{ display:flex; gap:10px; flex-wrap:wrap; }

.links{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:12px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:13px;
}

.section-title{
  margin:0 0 10px;
  font-size:18px;
}
.section{
  padding:0 0 60px;
}

.footer{
  border-top:1px solid var(--border);
  padding:24px 0 40px;
  color:var(--muted);
  font-size:13px;
}

@media (max-width: 820px){
  h1{ font-size:36px; }
  .card{ grid-column: span 12; }
  .menu{ gap:6px; }
}
.embed {
  margin-top: 12px;
}

.embed iframe {
  width: 100%;
  border: 0;
  border-radius: 12px;
}
/* MUSIC PAGE */

/* MUSIC PAGE */

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

.music-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:28px;
}

.music-card h3{
  margin:0 0 10px 0;
  font-size:20px;
}

.music-card p{
  max-width:420px;
  margin:0 0 16px 0;
  opacity:.78;
  font-size:15px;
  line-height:1.6;
}

.music-card .links{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:4px;
}

.video-thumb{
  width:100%;
  max-width:420px;
  aspect-ratio:16 / 9;
  display:block;
  border-radius:14px;
  margin:0 auto 18px auto;
  border:1px solid rgba(255,255,255,.08);
  object-fit:cover;
}

.song-thumb{
  width:100%;
  max-width:280px;
  aspect-ratio:1 / 1;
  display:block;
  border-radius:14px;
  margin:0 auto 18px auto;
  border:1px solid rgba(255,255,255,.08);
  object-fit:cover;
}

@media (max-width: 820px){
  .music-grid{
    grid-template-columns:1fr;
  }
}

.store-card{
  text-align:center;
}

.store-image-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:16px;
  min-height:220px;
}

.store-image{
  width:120px;
  max-width:100%;
  height:auto;
  max-height:200px;
  display:block;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.08);
  object-fit:contain;
  object-position:center;
}

.store-wide{
  width:220px;
  max-width:150%;
  height:auto;
  max-height:300px;
  object-fit:contain;
  object-position:center;
}
