/* =========================
   ZOYA EARLY ACCESS EMBED
========================= */

html,
body{
  margin:0;
  padding:0;
  width:100%;
  min-height:100%;
  background:#000;
  overflow-x:hidden;
}

main{
  background:#000;
}

/* SECTION */

.zoya-unlock-section{
  position:relative;
  width:100%;
  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:80px 40px;
  background:#000;
  overflow:hidden;
}

/* CARD */

.zoya-unlock-card{
  position:relative;
  z-index:2;

  max-width:1050px;
  width:100%;
  margin:0 auto;

  display:grid;
  grid-template-columns:0.95fr 1.05fr;

  overflow:hidden;
  background:#111;

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:0 40px 120px rgba(0,0,0,0.9);
}

/* IMAGE */

.zoya-unlock-image img{
  width:100%;
  height:100%;
  min-height:560px;
  object-fit:cover;
  display:block;
  filter:grayscale(1) contrast(1.05);
}

/* CONTENT */

.zoya-unlock-content{
  padding:70px 64px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:left;
}

.zoya-unlock-content > span{
  margin-bottom:18px;
  color:white;
  font-weight:800;
  font-size:15px;
  letter-spacing:4px;
  text-transform:uppercase;
}

.zoya-unlock-content h2{
  color:white;
  font-size:clamp(34px, 4vw, 58px);
  line-height:1.05;
  text-transform:uppercase;
  letter-spacing:4px;
  margin-bottom:22px;
}

.zoya-unlock-content p{
  color:rgba(255,255,255,0.7);
  font-size:17px;
  line-height:1.8;
  margin-bottom:34px;
}

/* FORM */

#zoyaSignupForm{
  display:flex;
  flex-direction:column;
  gap:16px;
}

#zoyaSignupForm input[type="text"],
#zoyaSignupForm input[type="email"]{
  width:100%;
  height:56px;
  box-sizing:border-box;

  background:rgba(255,255,255,0.035);
  border:1px solid rgba(255,255,255,0.16);

  color:white;
  padding:0 18px;
  font-size:14px;
  outline:none;
}

#zoyaSignupForm input::placeholder{
  color:rgba(255,255,255,0.45);
}

/* CONSENT */

.zoya-consent{
  display:flex;
  align-items:flex-start;
  gap:12px;

  margin:18px 0 30px;

  color:rgba(255,255,255,0.9);

  font-size:17px;
  line-height:1.8;
  letter-spacing:0;
  text-transform:none;
  text-align:left;
}

.zoya-consent input{
  width:16px;
  height:16px;
  flex:0 0 16px;
  margin-top:8px;
  accent-color:white;
}

.zoya-consent span{
  display:block;
}

/* BUTTONS */

#zoyaSignupForm button,
#zoyaSpotifyRevealBtn{
  height:58px;
  background:white;
  color:black;

  border:none;

  font-size:12px;
  font-weight:900;
  letter-spacing:2.5px;
  text-transform:uppercase;

  cursor:pointer;
  transition:0.35s ease;
}

#zoyaSignupForm button:hover,
#zoyaSpotifyRevealBtn:hover{
  opacity:0.86;
  transform:translateY(-2px);
}

/* AUDIO PLAYER */

.zoya-custom-player{
  margin:10px 0 24px;
  padding:24px;

  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.05);
}

.zoya-play-circle{
  width:64px;
  height:64px;
  border-radius:50%;
  margin:0 auto 18px;
  display:block;
  padding:0;
}

.zoya-track-title{
  text-align:center;
  color:white;
  font-size:13px;
  font-weight:800;
  margin-bottom:16px;
}

.zoya-progress-wrap{
  width:100%;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,0.16);
  overflow:hidden;
  cursor:pointer;
}

.zoya-progress-bar{
  height:100%;
  width:0%;
  background:white;
}

.zoya-time-row{
  display:flex;
  justify-content:space-between;
  margin-top:8px;
  font-size:11px;
  color:rgba(255,255,255,0.55);
}

#zoyaSpotifyRevealBtn{
  background:#1DB954;
  color:white;
}

/* ERROR / HIDDEN */

.zoya-error{
  color:#ff7777;
  font-size:13px;
}

.hidden{
  display:none !important;
}

/* AFTER UNLOCK */

.zoya-unlock-card.unlocked{
  display:block;
  max-width:720px;
}

.zoya-unlock-card.unlocked .zoya-unlock-image{
  display:none;
}

.zoya-unlock-card.unlocked .zoya-unlock-content{
  padding:72px 64px;
  text-align:left;
}

.zoya-unlock-card.unlocked .unlock-message{
  max-width:100%;
}

.zoya-unlock-card.unlocked .zoya-custom-player{
  margin-top:34px;
}

/* MOBILE */

@media (max-width:900px){
  .zoya-unlock-section{
    padding:40px 18px;
  }

  .zoya-unlock-card{
    grid-template-columns:1fr;
  }

  .zoya-unlock-image img{
    min-height:360px;
  }

  .zoya-unlock-content{
    padding:46px 28px;
    text-align:center;
  }
}

@media (max-width:768px){
  .zoya-unlock-card.unlocked{
    max-width:100%;
  }

  .zoya-unlock-card.unlocked .zoya-unlock-content{
    padding:48px 28px;
  }
}
