:root {
  color-scheme: light only;
  --black: #181721;
  --grey: #e6eaf2;
  --darkgrey: #dde1e7;
  --white: #e6eaf2;
  --active: #ffd000;
  --highlight: #ee2e5c;
  --font: "DM Sans", sans-serif;
  --font2: "Noto Sans SC", sans-serif;
  --font3: "Noto Serif SC", serif;
  --font4: "Barlow Condensed", sans-serif;
  --navheight: 70px;
  --txt_l: 20px;
  --txt_heading: 24px;
  --kvwidth: 1600px;
}

@media only screen and (max-width: 768px) {
  :root {
    --navheight: 65px;
  } 
}
/*---------------------------------------
   Animation
-----------------------------------------*/
@keyframes fadein{
	from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes fadein_top{
	from {transform: translateY(300px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}
@keyframes fadein_bottom{
	from {transform: translateY(-300px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}
@keyframes fadein_left{
	from {transform: translateX(-500px); opacity: 0;}
    to {transform: translateX(0); opacity: 1;}
}
@keyframes fadein_right{
	from {transform: translateX(500px); opacity: 0;}
    to {transform: translateX(0); opacity: 1;}
}
@keyframes popin{
  0% {transform: scale(2); opacity: 0;}
  100% {transform: scale(1); opacity: 1;}
}
@keyframes popout{
  0% {transform: scale(0); opacity: 0;}
  100% {transform: scale(1); opacity: 1;}
}
@keyframes rotate{
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
@keyframes toleft{
  0% {transform: translateX(0);}
  100% {transform: translateX(-3000px);}
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
/*---------------------------------------
   Normalize    
-----------------------------------------*/
body{
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0px;
  padding: 0px;
  color: var(--white);
  font-size:  var(--txt_s);
  font-family: var(--font);
  font-weight: 500;
  text-wrap: pretty;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background: var(--highlight);
  background: linear-gradient(to top, var(--highlight), #fd426e);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

body::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/pattern.png) top left;
  opacity: .25;
  mix-blend-mode: color-burn;
  pointer-events: none;
}

.maincontainer{
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding-bottom: 150px;
  z-index: 15;
}

p, li {
  font-size: var(--txt_body);
  line-height: calc(var(--txt_body) + 5px);
  font-weight: 400;
}

ol{
  padding-left: 18px;
}

button, a{
  pointer-events: all;
  cursor: pointer;
}

.divider.verti{
  margin: 0;
  width: 0;
  height: 100px;
  border-left: 1.5px solid white;
}

.logo{
  width: 175px;
  max-width: 12%;
  aspect-ratio: 175/140;
  background: url(../img/logo.png) top center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .maincontainer{
    padding-bottom: 200px;
  }
  .draggable-scroll{
    cursor: grab;
  }
  .logo{
    max-width: 30vw;
    z-index: 9999;
  }
}


.popup_wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 999;
}

.popup_container{
  position: relative;
  width: 750px;
  max-width: 87vw;
  height: 100%;
  max-height: 60vh;
  animation: fadein_top 1s ease;
}

/*---------------------------------------
   Scroll Effect       
-----------------------------------------*/
/* ::-webkit-scrollbar {
  width: 6px;
  height: 3.5px;
}
::-webkit-scrollbar-track {
  opacity: 0;
}
::-webkit-scrollbar-thumb {
  background: rgba(180, 116, 56, 0.7);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--highlight);
}

body.modal-open {
  overflow-y: scroll;
} */

/*---------------------------------------
   VIDEO MODAL
-----------------------------------------*/
/* Overlay */
.videoModal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  padding: 24px;
}
.videoModal.is-open { display: flex; }

/* Dialog */
.videoModal_dialog {
  width: min(100%, 960px);
  filter: drop-shadow( 0 4px 8px rgba(0, 0, 0, 0.5));
  position: relative;
}

.btn_closeVideo.btn_close {
  top: -80px !important;
  left: 50%;
  transform: scale(1) translateX(-50%) !important;
}

.videoModal_wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
}
.videoModal_wrapper > * {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: contain;
  background: #000;
}

/*---------------------------------------
   Font
-----------------------------------------*/
p{
  font-size: 16px;
  text-wrap: pretty;
}

.txt_highlight, .red{
  color: #ff2b44 !important;
}

.divider{
  border-bottom: 1px dotted var(--highlight);
}

table{
  width: 99.5%;
  border-spacing: 1px;
  color: #3c414a;
  margin: 1rem auto 1.5rem;
}
table tr:first-child td{
  padding: .8rem .5rem;
  background-color: var(--highlight);
  text-align: center;
  font-weight: 400;
  color: #fbf7e8;
}
table tr:nth-child(odd) {
  background-color: rgba(108,148,188,.35);
}
table tr:nth-child(even) {
  background-color: rgba(137,167,200,.35);
}
table td {
  font-size: 14px;
  line-height: 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  word-break: break-all;
  padding: .5rem .5rem;
  text-align: center;
}

.note{
  font-family: var(--font4);
  text-transform: uppercase;
  width: 800px;
  max-width: 90vw;
  color: var(--white);
  font-size: 20px;
}

.nav_icon{
  max-height: 70px;
}

.logo{
  height: fit-content;
  max-height: 50px;
  background: url(../img/logo.png) top center no-repeat;
  background-size: contain;
}

.titlewrapper{
  position: relative;
}
.titlewrapper::before, .titlewrapper::after{
  content: "";
  position: absolute;
  height: 20px;
  max-height: 75%;
  aspect-ratio: 484 / 89;
  top: 10%;
  background: url(../img/tltdeco.png) no-repeat;
  background-size: contain;
}
.titlewrapper::before{
  left: calc(100% + 10px);
}
.titlewrapper::after{
  right: calc(100% + 10px);
  transform: scaleX(-1);
}

/*---------------------------------------
   KV
-----------------------------------------*/
#KV{
  position: relative;
  width: 100vw;
  flex-grow: 1;
  padding: 25px 0;
  /* background: linear-gradient(to bottom, #fcedc2, #ffe99f); */
}
#KV::before, #KV::after {
  --bgH: 40%;
  position: absolute;
  content: "";
  width: 100vw;
  z-index: -1;
}

#KV::before {
  top: calc(var(--bgH) - 1px);
  aspect-ratio: 300 / 27;
  background: #ffde7d;
  /* background: #181818; */
  mask: url(../img/shp.svg) top no-repeat;
  mask-size: cover;
}
#KV::after {
  top: 0;
  height: var(--bgH);
  background: linear-gradient(to bottom, #ffe99f, #ffde7d);
  /* background: linear-gradient(to bottom, #242424, #181818); */
}

/* @media only screen and (max-width: 650px) {
  #KV::before{
    min-height: 350px;
    mask-position:  90% 0;
  }
} */

@keyframes logovideo{
  from {opacity: 1;}
  to {opacity: 0; display: none;}
}

.preloader{
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  animation: logovideo 1s forwards;
  animation-delay: 6s;
  backdrop-filter: blur(9px);
}

.logovideo{
  display: unset;
  position: absolute;
  z-index: 5;
  width: 1470px;
  max-width: 130vw;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 5px) , -50%);
}

#album{
  position: relative;  
  filter: drop-shadow(2px 2px 6px rgba(0,0,0,.5));
}

#album::after{
  content: "";
  top: 15%;
  left: 75%;
  position: absolute;
  width: 105px;
  aspect-ratio: 79 / 30;
  background: url(../img/clickme.png) left no-repeat;
  background-size: contain;
  z-index: 15;
}

.album_wrapper{
  position: relative;
  width: 350px;
  aspect-ratio: 1/1;
  max-width: 55vw;
  border-radius: 9px;
  background: var(--black);
  background: url(../img/album.jpg) center no-repeat;
  background-size: contain;
  overflow: hidden;
  z-index: 10;
}
.play .album_wrapper{
  transform: translateX(-20%);
  transition: all .3s;
}

.cdPlayer{
  position: absolute;
  width: 92%;
  max-width: 85vw;
  aspect-ratio: 1/1;
  max-width: 90vw;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to top, rgb(53, 53, 53) 20%, var(--black));
  border:#f5ebb8 3px solid;
}
.cdPlayer::before{
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/cd.png) center no-repeat;
  background-size: contain;
  mix-blend-mode: soft-light;
}

.play .cdPlayer{
  left: 80%;
  transition: all .3s;
  animation: cd 3s linear infinite;
}
@keyframes cd{
  0% {transform: translate(-50%, -50%) rotate(0deg);}
  100% {transform: translate(-50%, -50%) rotate(360deg);}
}
.play .cdPlayer::before{
  z-index: 1;
  transition: all .3s;
}

.cd_wrapper{
  position: relative;
  width: 35%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  z-index: 5;
  background: linear-gradient(to top, #fc618b, #f7386b);
}
.cd_wrapper::before, .cd_wrapper::after{
  content:"";
  position: absolute;
  width: 95%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border:#e6eaf2 1px solid;
}
.cd_wrapper::after{
  width: 10%;
  border: none;
  background: var(--black);
}
.cd_wrapper img{
  width: 80%;
  z-index: 5;
}

.musicPlatform_wrapper{
  position: relative;
  width: 370px;
  max-width: 85vw;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #e6eaf2;
  /* z-index: 5; */
}

@keyframes char{
  from {background-position: 0 0;}
  to {background-position: 200% 0;}
}
.musicPlatform_wrapper::before, .musicPlatform_wrapper::after{
  content: "";
  position: absolute;
  width: 50%;
  bottom: 2%;
  animation: char 3s steps(2) infinite;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.5));
}
.musicPlatform_wrapper::before{
  aspect-ratio: 263 / 298;
  right: 98%;
  background: url(../img/char1.png) no-repeat;
  background-size: auto 100%;
  transform: rotate(355deg);
}
.musicPlatform_wrapper::after{
  aspect-ratio: 277 / 278;
  left: 98%;
  background: url(../img/char2.png) no-repeat;
  background-size: auto 100%;
  transform: rotate(15deg);
}

.musicPlatform_item{
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
}
.musicPlatform_item:not(:last-child){
  border-bottom: 1px solid #e6eaf2;
}

.musicPlatform_item:hover{
  background: #f8fbff;
}

@media only screen and (max-width: 650px) {
  .musicPlatform_wrapper::before, .musicPlatform_wrapper::after{
    display: none;
  } 
}

/*---------------------------------------
   Button
-----------------------------------------*/
.btn_play{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn_play::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: black;
  opacity: 0;
}
.btn_play:hover::before{
  opacity: .5;
  transition: .3s all;
}
.btn_play span{
  margin: 0;
  font-size: 70px;
  z-index: 10;
  opacity: 0;
  cursor: pointer;
}
.btn_play:hover span{
  opacity: .65;
  transition: .3s all;
}
.btn_play span:hover {
  opacity: 1;
  transition: .3s all;
}
@media only screen and (max-width: 768px) {
  .btn_play span{
  opacity: 1 !important;
  filter: drop-shadow(0 0 12px rgba(0,0,0,.75));
  }
}
.btn_musicPlay{
  padding: 8px 15px;
  border-radius: 8px;
  background: var(--grey);
  color: var(--black);
}

.btn_musicPlay span{
  font-size: 14px;
  font-weight: 800;
}

.btn_musicPlay:hover{
  background: var(--darkgrey);
}

.carousel_wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y; /* allow vertical scroll on mobile, we handle horizontal */
}

.carousel_wrapper:active {
  cursor: grabbing;
}

.carousel_track {
  display: flex;
  gap: 10px;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.carousel{
  position: relative;
  height: fit-content;
  width: fit-content;
}
.carousel img{
  display: block;
  height: 300px;
  width: auto;
  border-radius: 10px;
  pointer-events: auto;

}
.carousel:hover{
  cursor: pointer;
  transform: scale(1.1) rotate(2deg);
  z-index: 5;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.75));
  transition: all .3s ease;
}
.carousel:nth-child(even):hover{
  transform: scale(1.1) rotate(-3deg);
  transition: all .3s ease;
}

.carousel span{
  display: none;
  position: absolute;
  text-align: center;
  text-wrap: nowrap;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.carousel::before{
  display: none;
  content: "";
  width: 100%;
  bottom: 0;
  position: absolute;
  height: 40%;
  border-radius: 10px;
  background: linear-gradient(to top , black 15%, rgba(0,0,0,0));
}

@media only screen and (max-width: 768px) {
  .carousel span, .carousel::before{
    display: unset;
  }
}


/* Modal */
.poster_modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.poster_modal.is-open {
  display: flex;
}

.poster_modal_img {
  max-width: min(92vw, 1400px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.poster_modal_close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.poster_modal_close:hover {
  background: rgba(255,255,255,.20);
}

.posterModalVideoWrap{
  width: min(1000px, 92vw);
  aspect-ratio: 16 / 9;
}

#posterModalVideo{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 12px;
}