:root{
  --bg:#070710;
  --card:#0c0c18;
  --text:#e9e9ff;
  --muted:#b7b7d6;
  --stroke:rgba(255,255,255,.10);
  --glow:rgba(178, 79, 255, .35);
  --accent:#b24fff;
  --accent2:#18e0ff;
  --radius:18px;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(178,79,255,.25), transparent 60%),
    radial-gradient(900px 420px at 85% 10%, rgba(24,224,255,.18), transparent 55%),
    radial-gradient(800px 520px at 50% 110%, rgba(178,79,255,.16), transparent 55%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:1100px; margin:0 auto; padding:26px 18px 70px; }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(178,79,255,.20), transparent 60%),
    radial-gradient(500px 240px at 90% 10%, rgba(24,224,255,.14), transparent 55%);
  pointer-events:none;
  opacity:.9;
}
.pad{ padding:22px; position:relative; }

.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; margin-bottom:18px;
}
.brand{ display:flex; align-items:center; gap:12px; min-width:0; }
.logo{
  width:44px; height:44px; border-radius:12px;
  background: linear-gradient(135deg, rgba(178,79,255,.35), rgba(24,224,255,.25));
  border:1px solid var(--stroke);
  box-shadow: 0 0 0 6px rgba(178,79,255,.07);
  display:grid; place-items:center;
  overflow:hidden;
  flex:0 0 auto;
}
.logo img{ width:100%; height:100%; object-fit:cover; }
.brand .name{
  font-size:13px; letter-spacing:.18em; text-transform:uppercase;
  margin:0; color:var(--muted);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.menu{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.chip{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  color:var(--muted);
  font-size:13px;
  white-space:nowrap;
}
.chip:hover{ border-color:rgba(255,255,255,.18); }

.heroBanner{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.25);
}
.bannerImg{
  width:100%; height:240px; object-fit:cover; display:block;
  filter: saturate(1.05) contrast(1.05);
}
@media (max-width:520px){ .bannerImg{ height:200px; } }

.heroGrid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
@media (max-width:920px){ .heroGrid{ grid-template-columns:1fr; } }

.h1{
  font-size:44px; line-height:1.05; margin:0 0 10px;
  letter-spacing:-.02em;
}
@media (max-width:520px){ .h1{ font-size:34px; } }
.p{ margin:0; color:var(--muted); font-size:16px; line-height:1.6; }

.badges{ display:flex; flex-wrap:wrap; gap:10px; margin: 14px 0 0; }
.badge{
  font-size:13px; color:var(--muted);
  padding:8px 10px;
  border:1px solid var(--stroke);
  border-radius:999px;
  background:rgba(0,0,0,.18);
}

.sectionTitle{
  margin:0 0 10px;
  font-size:13px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted);
}
.btnRow{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.btn{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.18); }
.btnPrimary{
  background: linear-gradient(135deg, rgba(178,79,255,.75), rgba(24,224,255,.55));
  border-color: rgba(255,255,255,.18);
}
.btnPrimary:hover{ background: linear-gradient(135deg, rgba(178,79,255,.85), rgba(24,224,255,.65)); }

.grid2{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
@media (max-width:920px){ .grid2{ grid-template-columns:1fr; } }

.releaseCard{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.metaLine{ color:var(--muted); font-size:14px; }
.hr{ height:1px; background:var(--stroke); margin:14px 0; border:0; }

.ratio{
  width:100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.25);
}
iframe{ width:100%; height:100%; border:0; }

.footer{
  margin-top:26px;
  color:var(--muted);
  font-size:13px;
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:space-between;
  opacity:.92;
}
.small{ color:var(--muted); font-size:13px; line-height:1.55; }

/* --- YouTube thumb cards --- */
.thumbGrid{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){
  .thumbGrid{ grid-template-columns:1fr; }
}
.ytCard{
  display:block;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.ytCard:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
}
.ytThumb{
  width:100%;
  aspect-ratio: 16/9;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}
.ytInfo{ padding:12px 12px 14px; }
.ytTitle{ margin:0 0 6px; font-size:16px; }
.ytMeta{ margin:0; color:var(--muted); font-size:13px; line-height:1.45; }

.stack{ display:flex; flex-direction:column; gap:12px; }
.listItem{
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
}
.listItem:hover{ border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.03); }
.listThumb{
  width:140px;
  aspect-ratio:16/9;
  border-radius:12px;
  border:1px solid var(--stroke);
  overflow:hidden;
  background: rgba(0,0,0,.25);
  flex:0 0 auto;
}
@media (max-width:520px){
  .listItem{ flex-direction:column; align-items:stretch; }
  .listThumb{ width:100%; }
}
.listThumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.listBody{ display:flex; flex-direction:column; gap:6px; }
.listTitle{ margin:0; font-size:18px; }
.listMeta{ margin:0; color:var(--muted); font-size:13px; }

/* Cover intera (non tagliata) */
.coverBox{
  border:1px solid var(--stroke);
  border-radius:16px;
  overflow:hidden;
  background: rgba(0,0,0,.20);
  padding:10px;
}
.coverImg{
  width:100%;
  height:280px;           /* puoi alzare a 320 se la vuoi più grande */
  object-fit: contain;     /* ✅ mostra tutta l'immagine */
  display:block;
  background: rgba(0,0,0,.25);
  border-radius:12px;
}
@media (max-width:520px){
  .coverImg{ height:220px; }
}

/* Future release: 1 card, cover sx + testo dx, mobile stack */
.futureWrap{
  display:grid;
  grid-template-columns: 380px 1fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 920px){
  .futureWrap{ grid-template-columns: 1fr; }
}

.coverBox{
  border:1px solid var(--stroke);
  border-radius:16px;
  overflow:hidden;
  background: rgba(0,0,0,.20);
  padding:10px;
}

.coverImg{
  width:100%;
  height:320px;
  object-fit: contain;     /* mostra tutta la cover */
  display:block;
  background: rgba(0,0,0,.25);
  border-radius:12px;
}
@media (max-width: 520px){
  .coverImg{ height:240px; }
}
/* Tracklist */
.tracklist{
  margin-top:14px;
  border:1px solid var(--stroke);
  border-radius:16px;
  overflow:hidden;
  background: rgba(0,0,0,.18);
}
.trackRow{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap:12px;
  padding:10px 14px;
  border-bottom:1px solid var(--stroke);
}
.trackRow:last-child{ border-bottom:none; }
.trackTime{
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}
.trackTitle{
  font-size:15px;
}
@media (max-width:520px){
  .trackRow{
    grid-template-columns: 70px 1fr;
  }
}

/* Tracklist links */
.trackRow a{
  color:inherit;
  text-decoration:none;
}
.trackRow a:hover{
  text-decoration:underline;
}
.trackTime a{
  color:var(--muted);
  font-weight:700;
}

.langSwitch{
  display:flex;
  gap:8px;
}
.langSwitch button{
  background:rgba(255,255,255,.05);
  border:1px solid var(--stroke);
  color:var(--muted);
  padding:6px 10px;
  border-radius:10px;
  cursor:pointer;
  font-size:13px;
}
.langSwitch button.active{
  color:#fff;
  border-color:rgba(255,255,255,.25);
}





