*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#050505;
  color:white;
  font-family:Arial, Helvetica, sans-serif;
}

.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:10;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:28px 42px;
  background:linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

.nav-logo{
  color:white;
  text-decoration:none;
  font-size:24px;
  font-weight:800;
  letter-spacing:8px;
}

.navbar nav{
  display:flex;
  gap:28px;
}

.navbar nav a{
  color:white;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  opacity:0.82;
  transition:0.3s ease;
}

.navbar nav a:hover{
  opacity:1;
  border-bottom:1px solid white;
}

/* =========================
   HERO VIDEO FIX
========================= */

.hero{
  position:relative;
  height:100vh;
  width:100%;
  overflow:hidden;
  background:#050505;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
  overflow:hidden;
}

.hero-video video{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:translate(-50%, -50%);
}

.hero-video::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.64)
    );
  z-index:1;
  pointer-events:none;
}

.hero .navbar,
.hero-text{
  position:relative;
  z-index:2;
}

/* HERO CAROUSEL */

.hero-carousel{
  position:absolute;

  left:50%;
  bottom:60px;

  transform:translateX(-50%) translateY(40px);

  display:flex;
  gap:26px;

  z-index:3;

  opacity:0;

  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.hero-carousel.visible{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.hero-release{
  width:180px;

  cursor:pointer;

  transition:0.45s ease;
}

.hero-release img{
  width:100%;
  display:block;

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

  transition:0.45s ease;
}

.hero-release span{
  display:block;

  margin-top:14px;

  text-align:center;

  color:white;

  text-transform:uppercase;
  letter-spacing:2px;

  font-size:11px;
}

.hero-release:hover{
  transform:translateY(-10px);
}

.hero-release:hover img{
  border-color:rgba(255,255,255,0.35);
  transform:scale(1.03);
}

@media (max-width:900px){

  .hero-carousel{
    width:100%;
    padding:0 24px;

    overflow-x:auto;

    justify-content:flex-start;

    bottom:40px;
  }

  .hero-release{
    flex:0 0 150px;
  }

}

.about-preview{
  min-height:60vh;
  background:#050505;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:90px 28px;
}

.about-inner{
  max-width:820px;
  text-align:center;
}

.about-inner h2{
  font-size:42px;
  text-transform:uppercase;
  letter-spacing:4px;
  margin-bottom:28px;
}

.about-inner p{
  font-size:20px;
  line-height:1.7;
  color:#d8d8d8;
  margin-bottom:40px;
}

.button{
  display:inline-block;
  color:white;
  border:1px solid white;
  padding:15px 34px;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  transition:0.3s ease;
}

.button:hover{
  background:white;
  color:black;
}

.page-navbar{
  background:#050505;
}

.page{
  min-height:100vh;
  padding:160px 42px 80px;
  background:#050505;
}

.page h1{
  font-size:72px;
  text-transform:uppercase;
  letter-spacing:5px;
  margin-bottom:24px;
}

.page p{
  font-size:20px;
  color:#d0d0d0;
  margin-bottom:34px;
  max-width:700px;
}

@media (max-width:768px){

  .navbar{
    padding:22px;
    align-items:flex-start;
  }

  .navbar nav{
    gap:12px;
    flex-wrap:wrap;
    justify-content:flex-end;
  }

  .navbar nav a{
    font-size:11px;
  }

  .nav-logo{
    font-size:20px;
    letter-spacing:5px;
  }

  .hero{
    background-position:center top;
    padding:0 24px 55px;
  }

  .hero-text h1{
    font-size:76px;
  }

  .hero-text p{
    font-size:12px;
    letter-spacing:2px;
  }

  .about-inner h2{
    font-size:30px;
  }

  .about-inner p{
    font-size:17px;
  }

  .page{
    padding:150px 24px 70px;
  }

  .page h1{
    font-size:46px;
  }

  .page p{
    font-size:17px;
  }

}

/* MUSIC PAGE ONLY - CLEAN CLICKABLE CAROUSEL */

.music-only-page{
  min-height:100vh;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.045), transparent 30%),
    #050505;
  color:white;
  padding:155px 42px 95px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.spotlight-carousel{
  width:100%;
  max-width:1350px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:64px;
  margin:0 auto;
}

.spotlight-card{
  position:relative;
  width:350px;
  background:rgba(10,10,10,0.82);
  border:1px solid rgba(255,255,255,0.08);
  padding:24px 24px 30px;
  text-decoration:none;
  color:white;
  transition:0.45s ease;
}

.spotlight-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,255,255,0.34);
  box-shadow:0 0 55px rgba(255,255,255,0.08);
}

.latest-release{
  border-color:rgba(255,255,255,0.32);
  box-shadow:
    0 0 60px rgba(255,255,255,0.08),
    0 0 110px rgba(120,70,255,0.07);
}

.cover-wrap{
  width:100%;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:#111;
  margin-bottom:28px;
}

.cover-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:0.65s ease;
}

.spotlight-card:hover .cover-wrap img{
  transform:scale(1.055);
}

.spotlight-card h2{
  text-align:center;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:2.8px;
  line-height:1.6;
  min-height:46px;
}

.release-badge{
  position:absolute;
  top:-16px;
  left:50%;
  transform:translateX(-50%);
  background:white;
  color:black;
  padding:9px 18px;
  font-size:10px;
  font-weight:800;
  letter-spacing:2.2px;
  text-transform:uppercase;
  white-space:nowrap;
  z-index:2;
}

@media (max-width:1000px){

  .music-only-page{
    justify-content:flex-start;
    overflow-x:hidden;
  }

  .spotlight-carousel{
    overflow-x:auto;
    justify-content:flex-start;
    scroll-snap-type:x mandatory;
    padding:25px 0 35px;
    gap:28px;
  }

  .spotlight-card{
    flex:0 0 78vw;
    scroll-snap-align:center;
    width:auto;
  }

}

@media (max-width:768px){

  .music-only-page{
    padding:130px 22px 70px;
  }

  .spotlight-carousel{
    gap:22px;
  }

  .spotlight-card{
    padding:18px 18px 24px;
  }

  .cover-wrap{
    margin-bottom:22px;
  }

  .spotlight-card h2{
    font-size:13px;
    letter-spacing:2.2px;
  }

}

/* CONTACT PAGE */

.contact-page{
  min-height:100vh;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.04), transparent 30%),
    #050505;
  color:white;
  padding:170px 42px 100px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.contact-wrapper{
  width:100%;
  max-width:760px;
}

.contact-heading{
  text-align:center;
  margin-bottom:70px;
}

.contact-heading h1{
  font-size:clamp(42px, 6vw, 82px);
  text-transform:uppercase;
  letter-spacing:5px;
  margin-bottom:20px;
}

.contact-heading p{
  color:#cfcfcf;
  font-size:17px;
  letter-spacing:1px;
  line-height:1.7;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.input-group{
  display:flex;
  flex-direction:column;
}

.input-group label{
  margin-bottom:12px;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#d0d0d0;
}

.input-group input,
.input-group textarea{
  width:100%;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.09);
  padding:18px;
  color:white;
  font-size:15px;
  font-family:Arial, Helvetica, sans-serif;
  transition:0.3s ease;
}

.input-group textarea{
  resize:none;
}

.input-group input:focus,
.input-group textarea:focus{
  outline:none;
  border-color:rgba(255,255,255,0.28);
  background:rgba(255,255,255,0.05);
}

.contact-button{
  margin-top:14px;
  background:white;
  color:black;
  border:none;
  padding:18px 30px;
  font-size:12px;
  font-weight:800;
  letter-spacing:3px;
  text-transform:uppercase;
  cursor:pointer;
  transition:0.35s ease;
}

.contact-button:hover{
  transform:translateY(-3px);
  opacity:0.92;
}

@media (max-width:768px){

  .contact-page{
    padding:140px 22px 80px;
  }

  .contact-heading{
    margin-bottom:46px;
  }

  .contact-heading h1{
    font-size:48px;
    letter-spacing:3px;
  }

  .contact-heading p{
    font-size:15px;
  }

  .form-row{
    grid-template-columns:1fr;
    gap:26px;
  }

}



/* EVENTS PAGE */

.events-page{
  min-height:100vh;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.04), transparent 28%),
    #050505;
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:160px 42px 100px;
  text-align:center;
}

.events-message{
  max-width:760px;
}

.events-label{
  display:inline-block;
  margin-bottom:42px;
  padding:24px 42px;
  border:1px solid rgba(255,255,255,0.16);
  color:white;
  font-size:18px;
  letter-spacing:7px;
  text-transform:uppercase;
  background:rgba(255,255,255,0.03);
}

.events-message p{
  color:#cfcfcf;
  font-size:20px;
  line-height:1.9;
  letter-spacing:0.6px;
  max-width:720px;
}

@media (max-width:768px){

  .events-page{
    padding:140px 22px 80px;
  }

  .events-label{
    font-size:14px;
    letter-spacing:4px;
    padding:18px 30px;
  }

  .events-message p{
    font-size:15px;
  }

}

/* DEMO PAGE */

.demo-page{
  min-height:100vh;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,0.04), transparent 30%),
    #050505;
  color:white;
  padding:160px 42px 120px;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.demo-wrapper{
  width:100%;
  max-width:920px;
}

.demo-heading{
  text-align:center;
  margin-bottom:80px;
}

.demo-heading h1{
  font-size:clamp(52px, 5vw, 92px);
  text-transform:uppercase;
  letter-spacing:5px;
  margin-bottom:24px;
  white-space:nowrap;
  line-height:0.95;
}

.demo-heading p{
  color:#d7d7d7;
  font-size:18px;
  letter-spacing:0.5px;
  line-height:1.7;
  margin-bottom:18px;
}

.demo-sub-note{
  display:block;
  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.55);
}

.demo-form{
  width:100%;
  max-width:520px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.input-group{
  display:flex;
  flex-direction:column;
}

.input-group label{
  margin-bottom:14px;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:white;
}

.input-group input,
.input-group textarea{
  width:100%;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
  padding:18px 20px;
  font-size:15px;
  outline:none;
  transition:0.3s ease;
}

.input-group textarea{
  min-height:180px;
  resize:none;
}

.input-group input:focus,
.input-group textarea:focus{
  border-color:rgba(255,255,255,0.22);
  background:rgba(255,255,255,0.03);
}

.input-group input::placeholder,
.input-group textarea::placeholder{
  color:rgba(255,255,255,0.28);
}

.demo-button{
  margin-top:12px;
  width:100%;
  background:white;
  color:black;
  border:none;
  padding:20px;
  font-size:11px;
  font-weight:800;
  letter-spacing:4px;
  text-transform:uppercase;
  cursor:pointer;
  transition:0.35s ease;
}

.demo-button:hover{
  transform:translateY(-3px);
  opacity:0.92;
}

@media (max-width:768px){

  .demo-page{
    padding:140px 22px 90px;
  }

  .demo-heading{
    margin-bottom:56px;
  }

  .demo-heading h1{
    font-size:48px;
    letter-spacing:3px;
    white-space:normal;
  }

  .demo-heading p{
    font-size:15px;
  }

  .demo-form{
    max-width:100%;
  }

}
/* =========================
   FOOTER
========================= */

.site-footer{
  position:relative;
  background:
    linear-gradient(to bottom, rgba(5,5,5,0), #050505 18%),
    #050505;
  border-top:1px solid rgba(255,255,255,0.06);
  padding:90px 32px 52px;
  text-align:center;
  overflow:hidden;
}

.site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:70%;
  height:1px;
  background:
    linear-gradient(
      to right,
      transparent,
      rgba(255,255,255,0.28),
      transparent
    );
}

/* =========================
   NAVIGATION
========================= */

.footer-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:52px;
}

.footer-nav a{
  position:relative;
  color:rgba(255,255,255,0.68);
  text-decoration:none;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:2.6px;
  transition:0.35s ease;
}

.footer-nav span{
  color:rgba(255,255,255,0.28);
  font-size:12px;
}

.footer-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:1px;
  background:white;
  transition:0.35s ease;
}

.footer-nav a:hover{
  color:white;
}

.footer-nav a:hover::after{
  width:100%;
}

/* =========================
   FOLLOW TITLE
========================= */

.footer-follow-title{
  font-size:22px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:24px;
  color:white;
}

/* =========================
   ICON GRID
========================= */

.footer-icon-grid{
  display:grid;
  grid-template-columns:repeat(6, 155px);
  justify-content:center;

  width:fit-content;

  margin:0 auto 46px;

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

.footer-icon-grid a{
  position:relative;
  overflow:hidden;

  width:155px;
  height:90px;

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

  color:white;
  text-decoration:none;

  border-right:1px solid rgba(255,255,255,0.16);

  transition:0.35s ease;
}

.footer-icon-grid a:nth-child(6){
  border-right:none;
}

/* =========================
   SVG ICONS
========================= */

.footer-icon-grid svg{
  width:32px;
  height:32px;
  color:white;
  transition:0.35s ease;
}

.footer-icon-grid a:hover svg{
  color:black;
  transform:translateY(-10px);
}

/* =========================
   HOVER EFFECT
========================= */

.footer-icon-grid a:hover{
  background:white;
  color:black;
}

/* =========================
   LABELS ON HOVER
========================= */

.footer-icon-grid a::after{
  content:attr(aria-label);

  position:absolute;
  bottom:12px;
  left:50%;

  transform:
    translateX(-50%)
    translateY(8px);

  font-size:10px;
  letter-spacing:2px;
  font-weight:700;
  text-transform:uppercase;

  opacity:0;

  color:black;

  transition:0.35s ease;

  pointer-events:none;
  white-space:nowrap;
}

.footer-icon-grid a:hover::after{
  opacity:1;

  transform:
    translateX(-50%)
    translateY(0);
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  max-width:1200px;
  margin:0 auto;
}

/* =========================
   COPYRIGHT
========================= */

.footer-copy{
  color:rgba(255,255,255,0.34);
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
}

/* =========================
   LEGAL LINKS
========================= */

.footer-legal{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}

.footer-legal a{
  color:rgba(255,255,255,0.58);
  text-decoration:none;
  font-size:11px;
  letter-spacing:0.4px;
  transition:0.3s ease;
}

.footer-legal a:visited{
  color:rgba(255,255,255,0.58);
}

.footer-legal a:hover{
  color:white;
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

  .site-footer{
    padding:72px 20px 42px;
  }

  .footer-nav{
    gap:10px;
    margin-bottom:42px;
  }

  .footer-nav a{
    font-size:10px;
    letter-spacing:2px;
  }

  .footer-follow-title{
    font-size:18px;
  }

  .footer-icon-grid{
    grid-template-columns:repeat(3, 110px);
  }

  .footer-icon-grid a{
    width:110px;
    height:80px;

    border-right:1px solid rgba(255,255,255,0.16);
    border-bottom:1px solid rgba(255,255,255,0.16);
  }

  .footer-icon-grid a:nth-child(3),
  .footer-icon-grid a:nth-child(6){
    border-right:none;
  }

  .footer-icon-grid a:nth-child(4),
  .footer-icon-grid a:nth-child(5),
  .footer-icon-grid a:nth-child(6){
    border-bottom:none;
  }

  .footer-icon-grid svg{
    width:26px;
    height:26px;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .footer-legal{
    justify-content:center;
    gap:18px;
  }

}

/* FEATURED RELEASE - HOMEPAGE */

.featured-release{
  background:#050505;
  padding:110px 42px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.featured-inner{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:420px 1fr;
  gap:70px;
  align-items:center;
}

.featured-art img{
  width:100%;
  display:block;
  border:1px solid rgba(255,255,255,0.12);
}

.featured-content span{
  display:block;
  margin-bottom:18px;
  color:rgba(255,255,255,0.6);
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
}

.featured-content h2{
  font-size:clamp(42px, 6vw, 82px);
  line-height:0.95;
  text-transform:uppercase;
  letter-spacing:4px;
  margin-bottom:28px;
}

.featured-content p{
  max-width:540px;
  color:#d0d0d0;
  font-size:19px;
  line-height:1.8;
  margin-bottom:36px;
}

@media (max-width:850px){

  .featured-release{
    padding:80px 24px;
  }

  .featured-inner{
    grid-template-columns:1fr;
    gap:38px;
  }

  .featured-content h2{
    font-size:44px;
  }

}

/* COOKIE SETTINGS POPUP */

.cookie-panel{
  position:fixed;
  inset:0;
  z-index:9999;
  pointer-events:none;
}

.cookie-box{
  position:fixed;
  left:28px;
  bottom:28px;
  width:395px;
  max-width:calc(100vw - 56px);
  background:#f4f4f4;
  color:#111;
  padding:30px;
  opacity:0;
  transform:translateX(-24px);
  pointer-events:none;
  transition:0.35s ease;
  box-shadow:0 18px 60px rgba(0,0,0,0.28);
}

.cookie-panel.active .cookie-box{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.cookie-close{
  position:absolute;
  top:14px;
  right:16px;
  background:none;
  border:none;
  font-size:24px;
  cursor:pointer;
}

.cookie-box h2{
  font-size:28px;
  text-transform:uppercase;
  margin-bottom:18px;
  letter-spacing:1px;
}

.cookie-box p{
  font-size:17px;
  line-height:1.45;
  margin-bottom:22px;
  color:#555;
}

.cookie-box a{
  color:#111;
  text-decoration:underline;
}

.cookie-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}

.cookie-row strong{
  display:block;
  font-size:14px;
  margin-bottom:10px;
}

.cookie-row span{
  display:block;
  font-size:16px;
  line-height:1.45;
  color:#555;
}

.cookie-row em{
  font-style:normal;
  font-size:14px;
  white-space:nowrap;
  color:#555;
}

.cookie-switch{
  position:relative;
  width:42px;
  height:24px;
  flex:0 0 auto;
}

.cookie-switch input{
  display:none;
}

.cookie-switch span{
  position:absolute;
  inset:0;
  background:#ccc;
  border-radius:999px;
  cursor:pointer;
}

.cookie-switch span::before{
  content:"";
  position:absolute;
  width:18px;
  height:18px;
  left:3px;
  top:3px;
  background:white;
  border-radius:50%;
  transition:0.25s ease;
}

.cookie-switch input:checked + span{
  background:#111;
}

.cookie-switch input:checked + span::before{
  transform:translateX(18px);
}

.cookie-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:10px;
}

.cookie-link{
  background:none;
  border:none;
  border-bottom:1px solid #111;
  font-size:16px;
  cursor:pointer;
  padding:0;
}

.cookie-save{
  background:#050505;
  color:white;
  border:none;
  padding:15px 24px;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
}

@media (max-width:768px){
  .cookie-box{
    left:18px;
    bottom:18px;
    width:calc(100vw - 36px);
    padding:24px;
  }
}

/* =========================
   LISTEN POPUP
========================= */

.listen-popup{
  position:fixed;
  inset:0;

  background:rgba(0,0,0,0.82);

  z-index:99999;

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

  opacity:0;
  pointer-events:none;

  transition:0.35s ease;
}

.listen-popup.active{
  opacity:1;
  pointer-events:auto;
}

/* =========================
   POPUP BOX
========================= */

.listen-popup-box{
  position:relative;

  width:460px;
  max-width:calc(100vw - 34px);

  background:#080808;

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

  padding:30px;

  text-align:center;

  box-shadow:0 30px 90px rgba(0,0,0,0.7);

  transform:translateY(20px);
  transition:0.35s ease;
}

.listen-popup.active .listen-popup-box{
  transform:translateY(0);
}

/* =========================
   CLOSE BUTTON
========================= */

.listen-close{
  position:absolute;
  top:14px;
  right:16px;

  background:none;
  border:none;

  color:white;

  font-size:30px;
  line-height:1;

  cursor:pointer;

  transition:0.3s ease;
}

.listen-close:hover{
  opacity:0.6;
}

/* =========================
   COVER IMAGE
========================= */

.listen-cover img{
  width:100%;
  max-width:300px;

  display:block;

  margin:0 auto 26px;

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

/* =========================
   TITLES
========================= */

.listen-popup-box h2{
  font-size:30px;
  line-height:1;

  text-transform:uppercase;
  letter-spacing:2px;

  margin-bottom:10px;

  color:white;
}

.listen-popup-box p{
  color:rgba(255,255,255,0.6);

  font-size:13px;

  letter-spacing:3px;
  text-transform:uppercase;

  margin-bottom:34px;
}

.listen-popup-box h3{
  font-size:13px;

  text-transform:uppercase;
  letter-spacing:3px;

  margin-bottom:20px;

  color:white;
}

/* =========================
   STREAMING GRID
========================= */

.listen-grid{
  display:grid;
  grid-template-columns:1fr 1fr;

  border:1px solid rgba(255,255,255,0.18);
}

/* =========================
   STREAMING BUTTONS
========================= */

.listen-grid a{
  position:relative;

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

  min-height:84px;

  color:white;
  text-decoration:none;

  text-transform:uppercase;
  letter-spacing:2px;

  font-size:12px;
  font-weight:800;

  border-right:1px solid rgba(255,255,255,0.18);
  border-bottom:1px solid rgba(255,255,255,0.18);

  transition:0.3s ease;
}

.listen-grid a:nth-child(2),
.listen-grid a:nth-child(4){
  border-right:none;
}

.listen-grid a:nth-child(3),
.listen-grid a:nth-child(4){
  border-bottom:none;
}

.listen-grid a:hover{
  background:white;
  color:black;
}

/* =========================
   LISTEN NOW BUTTON
========================= */

.listen-popup-trigger{
  background:white !important;
  color:black !important;

  border:none;

  cursor:pointer;

  transition:0.3s ease;
}

.listen-popup-trigger:hover{
  opacity:0.86;
}

/* =========================
   MOBILE
========================= */

@media (max-width:600px){

  .listen-popup-box{
    padding:24px;
  }

  .listen-popup-box h2{
    font-size:24px;
  }

  .listen-grid{
    grid-template-columns:1fr;
  }

  .listen-grid a{
    border-right:none;
  }

  .listen-grid a:nth-child(3){
    border-bottom:1px solid rgba(255,255,255,0.18);
  }

}

/* =========================
   MOBILE HERO VIDEO
========================= */

@media (max-width:900px){

  .hero{
    height:100svh;
    min-height:100svh;
    overflow:hidden;
  }

  .hero-video{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center center;

    transform:scale(1.12);
  }

  .hero-overlay{
    background:
      linear-gradient(
        to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.38) 45%,
        rgba(0,0,0,0.55) 100%
      );
  }

  /* =========================
     MOBILE CAROUSEL
  ========================= */

  .hero-carousel{
    position:absolute;

    left:0;
    right:0;

    bottom:24px;

    width:100%;

    padding:0 18px;

    overflow-x:auto;
    overflow-y:hidden;

    display:flex;
    justify-content:flex-start;

    gap:14px;

    transform:translateY(40px);

    scrollbar-width:none;

    -webkit-overflow-scrolling:touch;
  }

  .hero-carousel::-webkit-scrollbar{
    display:none;
  }

  .hero-carousel.visible{
    transform:translateY(0);
  }

  .hero-release{
    flex:0 0 120px;

    width:120px;
  }

  .hero-release img{
    width:120px;

    border:1px solid rgba(255,255,255,0.14);
  }

  .hero-release span{
    font-size:9px;

    letter-spacing:1.5px;

    margin-top:10px;

    line-height:1.4;
  }

}

/* PAGE TRANSITIONS */

body{
  opacity:1;
  transition:opacity 0.45s ease;
}

body.page-fade-out{
  opacity:0;
}
