.amora-soundroom-v2{
  position:relative;
  overflow:hidden;
  padding:110px 20px;
  background:#120907;
  color:#f7eadb;
}
.amora-soundroom-v2{
  width:100vw;
  margin-left:calc(50% - 50vw);
}

.amora-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(241,191,80,.18), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(112,36,20,.28), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(184,92,40,.18), transparent 30%),
    linear-gradient(135deg,#130907,#25110d 45%,#0b0605);
  animation:amoraBgMove 12s ease-in-out infinite alternate;
}

.amora-blur{
  position:absolute;
  border-radius:999px;
  filter:blur(70px);
  opacity:.28;
  pointer-events:none;
}

.blur-1{
  width:300px;
  height:300px;
  background:#d89b4d;
  left:-100px;
  top:0;
}

.blur-2{
  width:420px;
  height:420px;
  background:#7b2d1c;
  right:-160px;
  bottom:-120px;
}

.amora-container{
      max-width:1440px;
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
}

.amora-heading{
  text-align:center;
  margin-bottom:60px;
}

.amora-label{
  color:#f1bf50;
  letter-spacing:.24em;
  font-size:12px;
  margin-bottom:18px;
}

.amora-heading h2{
  margin:0;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(52px, 7vw, 96px);
  line-height:.95;
  font-weight:500;
}

.amora-heading span{
  display:block;
  max-width:620px;
  margin:24px auto 0;
  color:#d7c3b1;
  line-height:1.8;
}

.amora-sound-layout{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:30px;
  align-items:stretch;
}

.amora-playlist-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.amora-track{
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
  width:100%;
  padding:22px;
  border-radius:26px;
  border:1px solid rgba(247,234,219,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  cursor:pointer;
  transition:transform .45s ease, border-color .45s ease, box-shadow .45s ease, background .45s ease;
  text-align:left;
  color:#f7eadb;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.amora-track:hover{
  transform:translateY(-4px);
  border-color:rgba(241,191,80,.35);
}

.amora-track.active{
  border-color:rgba(241,191,80,.5);
  box-shadow:0 24px 70px rgba(0,0,0,.38);
  background:linear-gradient(180deg, rgba(241,191,80,.13), rgba(255,255,255,.04));
}

.track-no{
  font-size:13px;
  color:#f1bf50;
  letter-spacing:.18em;
  flex:0 0 auto;
}

.track-info h3{
  margin:0;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:34px;
  line-height:1;
  font-weight:500;
}

.track-info p{
  margin:8px 0 0;
  color:#d7c3b1;
  font-size:14px;
}

.track-arrow{
  margin-left:auto;
  opacity:.6;
  font-size:20px;
}

.amora-player-card{
  min-height:720px;
}

.amora-player-image{
  position:relative;
  height:100%;
  min-height:720px;
  border-radius:34px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  transition:background-image .6s ease, transform .6s ease;
  box-shadow:0 40px 120px rgba(0,0,0,.5);
}

.amora-player-image.is-changing{
  transform:scale(.985);
}

.amora-image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.68));
}

.amora-player-content{
  position:absolute;
  left:40px;
  bottom:40px;
  max-width:460px;
}

.amora-player-content span{
  color:#f1bf50;
  font-size:14px;
}

.amora-player-content h3{
  margin:14px 0;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:72px;
  line-height:.92;
  font-weight:500;
}

.amora-player-content p{
  color:#efe2d6;
  line-height:1.8;
  margin-bottom:28px;
}

.amora-player-content a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 24px;
  border-radius:999px;
  background:#f1bf50;
  color:#2a140d;
  text-decoration:none;
  font-weight:500;
  transition:transform .35s ease, box-shadow .35s ease;
}

.amora-player-content a:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 34px rgba(241,191,80,.22);
}

@keyframes amoraBgMove{
  from{transform:scale(1) translate3d(0,0,0)}
  to{transform:scale(1.06) translate3d(-1%,1%,0)}
}

@media(max-width:1100px){
  .amora-sound-layout{grid-template-columns:1fr}
  .amora-player-card{min-height:auto}
  .amora-player-image{min-height:620px}
}

@media(max-width:680px){
  .amora-soundroom-v2{padding:72px 14px}
  .amora-heading{margin-bottom:40px}
  .amora-heading h2{font-size:58px}
  .amora-track{padding:18px;border-radius:22px}
  .track-info h3{font-size:28px}
  .amora-player-image{min-height:520px;border-radius:28px}
  .amora-player-content{left:24px;right:24px;bottom:24px}
  .amora-player-content h3{font-size:54px}
}