.release-page,
.releases-page,
.smartlink-page{
  background:#efe4d2;
  color:#3b3535;
  min-height:100vh;
}

/* HERO */
.release-hero{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  padding:170px 0 110px;
  background:#efe4d2;
}

.release-hero__bg{
  position:absolute;
  inset:0;
  z-index:-3;
}

.release-hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.25);
  filter:blur(8px) saturate(1.35) brightness(.95);
  opacity:.65;
}

.release-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(to bottom, rgb(239 228 210 / 24%), rgb(237 228 212) 92%);
}

.release-hero__grid{
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:80px;
  align-items:start;
  margin-top: 80px;
}

.breadcrumbs{
  font-size:12px;
  margin-bottom:35px;
  opacity:.75;
}

.release-date{
  font-size:12px;
  text-decoration:underline;
  margin:0 0 8px;
}

.release-hero h1{
  margin:0 0 8px;
  font-size:34px;
  line-height:1.1;
}

.release-hero h2{
  margin:0 0 28px;
  font-size:22px;
  font-weight:500;
}

.release-desc{
  max-width:700px;
  font-size:14px;
  line-height:1.6;
}

.release-hero__cover{
  width:100%;
  border-radius:8px;
  display:block;
}

.release-actions{
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:28px;
}

.stream-btn{
  display:inline-flex;
  height:48px;
  padding:0 22px;
  align-items:center;
  justify-content:center;
  background:#332d2d;
  color:#fff;
  border-radius:5px;
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
}

.platform-icon{
  color:#332d2d;
  font-weight:800;
}

/* LOWER: TRACKS + ARTISTS */
.release-lower{
  padding:70px 0 90px;
  background:#efe4d2;
  position:relative;
  z-index:2;
}

.release-lower__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:90px;
  align-items:start;
}

.tracks,
.artists-box{
  padding:0;
}

.tracks h2,
.artists-box h2,
.more-explore h2,
.newsletter h2,
.releases__top h1{
  font-size:32px;
  margin:0 0 45px;
  line-height:1;
  color:#3b3535;
}

.tracks__list{
  display:grid;
  gap:18px;
}

.track-row{
  display:grid;
  grid-template-columns:48px 64px minmax(0,1fr) 58px 96px;
  gap:18px;
  align-items:center;
  padding:5px 0;
}

.track-play{
  width:44px;
  height:44px;
  border-radius:999px;
  border:0;
  background:#332d2d;
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:.18s ease;
}

.track-play:hover{
  transform:scale(1.06);
  background:#1f1a1a;
}

.track-play svg{
  width:18px;
  height:18px;
  display:block;
}

.track-row img{
  width:64px;
  height:64px;
  object-fit:cover;
  border-radius:6px;
}

.track-info{
  min-width:0;
}

.track-info strong,
.track-info span{
  display:block;
}

.track-info strong{
  font-size:18px;
  line-height:1.15;
  color:#3b3535;
}

.track-info span{
  font-size:14px;
  color:rgba(59,53,53,.68);
}

.track-time{
  font-size:14px;
  color:rgba(59,53,53,.75);
}

.track-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.track-actions button{
  width:32px;
  height:32px;
  border:1px solid rgba(59,53,53,.18);
  border-radius:999px;
  background:rgba(255,255,255,.22);
  color:#3b3535;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:.18s ease;
}

.track-actions button:hover{
  background:#332d2d;
  color:#fff;
  border-color:#332d2d;
}

.track-actions svg{
  width:17px;
  height:17px;
  display:block;
}

/* ARTIST CARD */
.artist-card{
  position:relative;
  width:200px;
  height:200px;
  border-radius:8px;
  overflow:hidden;
  background:#ddd;
}

.artist-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.75);
}

.artist-card strong{
  position:absolute;
  left:18px;
  bottom:18px;
  color:#fff;
  font-size:22px;
  font-weight:900;
}

/* BOTTOM PLAYER */
.bottom-player{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:99999;
  background:#181313;
  padding:12px 18px;
  box-shadow:0 -20px 45px rgba(0,0,0,.28);
}

.bottom-player iframe{
  width:100%;
  display:block;
  border:0;
}

.player-embed{
  margin-top:30px;
}

.player-embed iframe{
  width:100%;
  max-width:720px;
  border:0;
}

.player-empty{
  padding:18px;
  background:#fff8ec;
  border-radius:8px;
  color:#fff;
}

/* MORE EXPLORE */
.more-explore{
  padding:70px 0 90px;
  background:#efe4d2;
  position:relative;
  z-index:2;
}

.more-explore__top,
.releases__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.outline-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:52px;
  padding:0 24px;
  border:1px solid #3b3535;
  border-radius:6px;
  font-weight:800;
  letter-spacing:2px;
}

/* RELEASE LISTING */
.releases-page{
  padding:170px 0 90px;
}

.releases__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px;
}

.release-card__image{
  position:relative;
  aspect-ratio:1/1;
  border-radius:8px;
  overflow:hidden;
  background:#d8cbb9;
}

.release-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.release-card__image span{
  position:absolute;
  top:18px;
  right:18px;
  min-width:108px;
  height:30px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#fff8ec;
  color:#5d5550;
  font-size:14px;
}

.release-card h3{
  margin:18px 0 4px;
  font-size:23px;
  line-height:1.15;
  font-weight:800;
}

.release-card p{
  margin:0;
  font-size:18px;
}

/* NEWSLETTER */
.newsletter{
  padding:90px 0 100px;
  background:linear-gradient(to bottom,#efe4d2,#f3d19b);
}

.newsletter p{
  max-width:620px;
  font-size:21px;
  line-height:1.45;
}

/* SMARTLINK */
.smartlink{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:170px 0 80px;
}

.smartlink__card{
  width:min(440px,92vw);
  text-align:center;
}

.smartlink__cover{
  width:100%;
  border-radius:14px;
  margin-bottom:24px;
}

.smartlink__card h1{
  font-size:34px;
  margin:0 0 6px;
}

.smartlink__card p{
  margin:0 0 24px;
  font-size:18px;
}

.smartlink__buttons{
  display:grid;
  gap:12px;
}

.smartlink__buttons a{
  display:flex;
  justify-content:center;
  align-items:center;
  height:54px;
  border-radius:10px;
  background:#332d2d;
  color:#fff;
  font-weight:800;
}

/* MOBILE */
@media(max-width:980px){
  .release-hero{
    padding:120px 0 60px;
  }

  .release-hero__grid{
    grid-template-columns:1fr;
    gap:35px;
  }

  .release-hero h1{
    font-size:38px;
  }

  .release-lower__grid{
    grid-template-columns:1fr;
    gap:55px;
  }

  .tracks h2,
  .artists-box h2,
  .more-explore h2,
  .newsletter h2,
  .releases__top h1{
    font-size:32px;
  }

  .track-row{
    grid-template-columns:40px 54px 1fr;
  }

  .track-time,
  .track-actions{
    grid-column:3;
  }

  .artist-card{
    width:100%;
    max-width:320px;
    height:auto;
    aspect-ratio:1/1;
  }

  .releases__grid{
    grid-template-columns:1fr;
  }

  .more-explore__top,
  .releases__top{
    align-items:flex-start;
    gap:20px;
  }
}

.bottom-player{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:99999;
  background:#2f2927;
  padding:14px 20px;
  box-shadow:0 -18px 50px rgba(0,0,0,.25);
}

#playerEmbed{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:999999;
  background:#262120;
  border-top:1px solid rgba(255,255,255,.08);
  box-shadow:0 -18px 50px rgba(0,0,0,.25);
  padding:12px 18px;
}

#playerEmbed[hidden]{
  display:none !important;
}

.cap-player{
  display:grid;
  grid-template-columns:280px 1fr 90px;
  align-items:center;
  gap:24px;
  width:100%;
  color:#fff;
}

.cap-left{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.cap-cover{
  width:58px;
  height:58px;
  object-fit:cover;
  border-radius:6px;
  flex-shrink:0;
}

.cap-meta{
  min-width:0;
}

.cap-meta strong{
  display:block;
  font-size:15px;
  font-weight:900;
  line-height:1.15;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.cap-meta span{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:rgba(255,255,255,.65);
}

.cap-center{
  display:grid;
  gap:10px;
  justify-items:center;
  min-width:0;
}

.cap-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.cap-icon-btn,
.cap-play-btn{
  border:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  padding:0;
}

.cap-icon-btn{
  width:28px;
  height:28px;
  opacity:.82;
}

.cap-icon-btn:hover{
  opacity:1;
}

.cap-icon-btn svg{
  width:17px;
  height:17px;
  fill:currentColor;
}

.cap-play-btn{
  width:42px;
  height:42px;
  border-radius:999px;
  background:#fff;
  color:#161313;
}

.cap-play-btn svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

.cap-progress{
  width:min(720px,100%);
  display:grid;
  grid-template-columns:42px 1fr 42px;
  gap:10px;
  align-items:center;
}

.cap-progress span{
  font-size:11px;
  color:rgba(255,255,255,.68);
}

.cap-bar{
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.2);
  overflow:hidden;
}

.cap-bar span{
  display:block;
  height:100%;
  width:0%;
  background:#fff;
  border-radius:999px;
}

.cap-right{
  display:flex;
  justify-content:flex-end;
}

#capClose{
  width:34px;
  height:34px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  font-size:18px;
}

#ytEngine{
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  overflow:hidden;
  pointer-events:none;
}

#ytEngine iframe{
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

@media(max-width:800px){
  .cap-player{
    grid-template-columns:1fr 44px;
    gap:12px;
  }

  .cap-left{
    grid-column:1 / 2;
  }

  .cap-center{
    grid-column:1 / -1;
    grid-row:2;
  }

  .cap-right{
    grid-column:2;
    grid-row:1;
  }
}

.cap-icon-btn.is-active{
  color:#8ff7e8;
  opacity:1;
}