:root{
  --bg: #0b1220;
  --card: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --line: rgba(255,255,255,0.14);
  --accent: #7cc4ff;
  --accent2: #ffd37a;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --radius: 18px;
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  line-height: 1.55;

  /* Needed so the fixed background layers sit behind everything */
  position: relative;
  background: var(--bg);
}

/* Static blurred background image, no scroll movement */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;

  background-image: url("/images/Fantasy-Scene01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

filter: blur(4px);
transform: scale(1.06);

}

/* Dark overlay to keep text readable */
body::after{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    180deg,
    rgba(7, 12, 22, 0.86) 0%,
    rgba(11, 18, 32, 0.86) 50%,
    rgba(7, 12, 22, 0.90) 100%
  );
}


a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.wrap{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position: absolute;
  left: -9999px;
  top: 10px;
}
.skip:focus{
  left: 10px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
}

.hero{
  border-bottom: 1px solid var(--line);
}

.hero__content{
  padding: 28px 0 34px 0;
}

.hero__banner{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.04);
}

.hero__banner img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: bottom 55%;
  display: block;
}

.hero__below{
  margin-top:18px;
  display: flex;
  justify-content: center;
}

.hero__titleBlock{
  width: min(980px, 100%);
}


.hero__titleBlock{
  width: min(860px, 100%);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero__titleBlock h1{
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.4px;
}

.tagline{
  margin: 8px 0 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.credits{
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.credits p{
  margin: 6px 0;
  color: var(--muted);
}

.section{
  padding: 46px 0;
}

.section h2{
  margin: 0 0 14px 0;
  font-size: 14px;
  letter-spacing: 2.2px;
  color: var(--muted);
}

.grid2{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.profileCard{
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.profileCard img{
  width: 100%;
  height: auto;
  display: block;
}

.profileCard figcaption{
  padding: 14px 16px 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

.smallCaps{
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}

.release{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.release__art img{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.release__info h2{
  margin-top: 0;
}

.subtitle{
  margin-top: 8px;
  color: var(--muted);
}

.fineprint{
  margin-top: 14px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

details.tracklist{
  margin-top: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}

details.tracklist summary{
  cursor: pointer;
  color: rgba(255,255,255,0.86);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);  
}

details.tracklist ol{
  margin: 12px 0 0 18px;
  color: var(--muted);
}

.ctaRow, .linkRow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 600;
}

.btn:hover{
  text-decoration: none;
  border-color: rgba(255,255,255,0.28);
}

.btn--primary{
  background: linear-gradient(180deg, rgba(124,196,255,0.22), rgba(124,196,255,0.10));
  border-color: rgba(124,196,255,0.30);
}

.btn--ghost{
  background: rgba(255,255,255,0.04);
}

.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0 34px 0;
  color: var(--muted);
}

.footer__inner{
  display: grid;
  gap: 6px;
}

.muted{
  color: var(--muted);
}

@media (max-width: 860px){
  .grid2, .release{
    grid-template-columns: 1fr;
  }

  .hero__content{
    padding: 22px 0 28px 0;
  }

  .hero__below{
    margin-top: 14px;
  }
}
