:root{
  --bg0:#0b0611;
  --bg1:#12081c;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.14);
  --text:#f6f3ff;
  --muted:rgba(246,243,255,.75);
  --accent1:#ff4fd8;
  --accent2:#9a5bff;
  --accent3:#ff8bd6;
  --focus:rgba(255,79,216,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 10% 10%, rgba(154,91,255,.25), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(255,79,216,.22), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}

.container{width:min(1180px, 92vw); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:12px;
  padding:10px 12px; border:1px solid var(--border);
  background:rgba(0,0,0,.55); border-radius:10px;
}
.skip:focus{left:12px; outline:2px solid var(--focus); outline-offset:3px}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background:rgba(10,6,16,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0}

.brand{display:flex; align-items:center; gap:10px; min-width:190px}
.brand-logo{width:34px; height:34px; border-radius:10px; border:1px solid rgba(255,255,255,.2)}
.brand-name{font-weight:700; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:16px}
.nav a{padding:8px 10px; border-radius:10px; color:var(--muted)}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}

.nav-toggle{display:none; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.06); border-radius:12px; padding:10px; cursor:pointer}
.nav-toggle span{display:block; width:20px; height:2px; background:rgba(246,243,255,.9); margin:4px 0}

.hero{position:relative}
.hero-banner{width:100%; height:min(62vh, 520px); object-fit:cover; display:block; filter:saturate(1.1) contrast(1.05)}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,6,16,.25) 0%, rgba(10,6,16,.68) 55%, rgba(10,6,16,.92) 100%);
  display:flex; align-items:flex-end;
}
.hero-inner{padding:36px 0 44px 0}
.hero h1{margin:0; font-size:clamp(30px, 4.6vw, 54px); line-height:1.05; letter-spacing:-.4px}
.hero p{margin:10px 0 0 0; color:var(--muted); font-size:clamp(14px, 2.2vw, 18px)}
.accent{
  background:linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.hero-cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(90deg, rgba(255,79,216,.92), rgba(154,91,255,.92));
  color:#0c0612;
  font-weight:700;
}
.btn:hover{filter:brightness(1.02)}
.btn:focus{outline:2px solid var(--focus); outline-offset:3px}
.btn-ghost{background:rgba(255,255,255,.06); color:var(--text)}

.section{padding:58px 0}
.section-alt{background:rgba(255,255,255,.03); border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08)}
.section-head{margin-bottom:18px}
.section-head h2{margin:0; font-size:28px; letter-spacing:-.2px}

.muted{color:var(--muted)}
.small{font-size:13px}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace}

.inline-link{color:var(--text); text-decoration:underline; text-underline-offset:3px}
.inline-link:hover{opacity:1; filter:brightness(1.05)}

.grid.two{display:grid; grid-template-columns: 1fr 1fr; gap:24px}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:20px;
}
.card h3{margin:0 0 10px 0}
.card p{margin:0 0 12px 0; color:var(--muted); line-height:1.7; font-size:15.5px}

.bullets{margin:0; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}

.subhead{
  margin:16px 0 10px 0;
  font-size:15px;
  color:rgba(246,243,255,.92);
  letter-spacing:.2px;
}

.facts{margin:0; padding:0}
.fact{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:10px;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.fact:first-child{border-top:1px solid rgba(255,255,255,.08)}
.fact dt{color:rgba(246,243,255,.78); font-weight:600}
.fact dd{margin:0; color:var(--muted)}

.social{margin-top:16px}
.social-title{font-weight:700; margin-bottom:10px}
.social-links{display:flex; flex-wrap:wrap; gap:10px}
.chip{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:600;
}
.chip:hover{background:rgba(255,255,255,.08)}
.chip:focus{outline:2px solid var(--focus); outline-offset:3px}

.carousel-head{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px}
.carousel-actions{display:flex; gap:8px}
.carousel-counter{
  min-width:64px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--muted);
  font-weight:700;
  letter-spacing:.2px;
}
.icon-btn{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-size:22px;
  cursor:pointer;
}
.icon-btn:focus{outline:2px solid var(--focus); outline-offset:3px}

.carousel{overflow:hidden}
.carousel-image{
  width:100%;
  aspect-ratio: 4/5;
  object-fit:cover;
  display:block;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gallery-item{
  grid-column: span 4;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  overflow:hidden;
  background:rgba(255,255,255,.05);
}
.gallery-item img{width:100%; height:220px; object-fit:cover; display:block}

.partners{display:grid; grid-template-columns: repeat(12, 1fr); gap:12px}
.partner-card{
  grid-column: span 6;
  display:flex; align-items:center; gap:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
}
.partner-card:hover{background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05))}
.partner-logo{width:64px; height:64px; border-radius:16px; border:1px solid rgba(255,255,255,.16); object-fit:cover; background:rgba(255,255,255,.06)}
.partner-title{font-weight:700}
.partner-sub{color:var(--muted); font-size:13px}

.embed{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:12px;
}
.embed iframe{display:block}

.songs-row{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding:4px 2px 10px 2px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.songs-row::-webkit-scrollbar{height:10px}
.songs-row::-webkit-scrollbar-thumb{background:rgba(255,255,255,.14); border-radius:999px}

.song-card{
  flex:0 0 auto;
  width:min(420px, 86vw);
  scroll-snap-align:start;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  padding:16px;
}
.song-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:10px}
.song-title{font-weight:800; letter-spacing:-.1px; line-height:1.2}
.song-link{color:var(--muted); white-space:nowrap; text-decoration:underline; text-underline-offset:3px; padding-top:2px}
.song-link:hover{color:var(--text)}

.song-note{margin:10px 0 0 0}

.yt-thumb{
  display:block;
  position:relative;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  background:rgba(255,255,255,.05);
}
.yt-img{display:block; width:100%; height:230px; object-fit:cover}
.yt-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:8px;
  background:linear-gradient(180deg, rgba(10,6,16,.10) 0%, rgba(10,6,16,.55) 70%, rgba(10,6,16,.75) 100%);
}
.yt-play{
  width:52px;
  height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
}
.yt-text{color:rgba(246,243,255,.92); font-weight:700}
.yt-thumb:hover .yt-play{background:rgba(255,255,255,.12)}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(10,6,16,.55);
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:18px 0}
.footer-links{display:flex; gap:14px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}
.footer-brand{font-weight:800}

/* Legal pages */
.legal{padding:46px 0}
.legal h1{margin:0 0 10px 0; font-size:34px; letter-spacing:-.3px}
.legal h2{margin:18px 0 8px 0; font-size:20px}
.legal p,.legal li{color:var(--muted); line-height:1.6}
.legal .box{background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:16px; padding:14px}

@media (max-width: 900px){
  .grid.two{grid-template-columns:1fr}
  .partner-card{grid-column: span 12}
  .gallery-item{grid-column: span 6}
}

@media (max-width: 720px){
  .nav{display:none; position:absolute; right:4vw; top:60px; flex-direction:column; align-items:stretch; gap:6px;
    background:rgba(10,6,16,.92); border:1px solid rgba(255,255,255,.12); padding:10px; border-radius:16px;
  }
  .nav a{padding:10px 12px}
  .nav-toggle{display:inline-flex}
  .nav.open{display:flex}
  .gallery-item{grid-column: span 12}
}
