:root {
  color-scheme: light only;
  --black: #111111;
  --darkgrey: #232323;
  --active: #17E0EE;
  --highlight: #891a9e;
  --white: #eeeeee;
  --gradient: linear-gradient(to right bottom, #1bdae7, #ca50e1);
  --gradient2: linear-gradient(to right, #e077f4, #891a9e);
  --gradient3: linear-gradient(to right, #ffbe45, #d48a28);
  --font: "Outfit", serif;
  --btn_dl: 70px;
  --btncolor: #616161;
  --navH: 67px;
  --txt_body: 16px;
}

/*---------------------------------------
   Animation
-----------------------------------------*/
/* slidein */
@keyframes slideinleft{
	from {transform: translateX(-300px);}
    to {transform: translateX(0px);}
}
.a_slideinL.show{
  animation: slideinleft .5s ease-in-out backwards;
  animation-delay: 100ms;
}
@keyframes slideinright{
	from {transform: translateX(300px);}
    to {transform: translateX(0px);}
}
.a_slideinR.show{
  animation: slideinright .5s ease-in-out backwards;
  animation-delay: 100ms;
} 
@keyframes slideintop{
	from {transform: translateY(300px); opacity: 0;}
    to {transform: translateY(0px); opacity: 1; }
}
.a_slideinT.show{
  animation: slideintop .5s ease-in-out backwards;
}

@keyframes float{
  from {transform: translateY(10px);}
    to {transform: translateY(0);}
}

@keyframes zoom{
  from {scale: 1}
    to {scale: 1.05}
}

@keyframes rotate{
  from {rotate: 0deg;}
    to {rotate: 360deg;}
}

@keyframes textglow{
  from{ text-shadow: var(--active) 0 0 0;}
    to{ text-shadow: var(--active) 0 0 25px;}
}

/* popin */
@keyframes popin {
  0% {transform: scale(2); opacity: 0; filter: blur(3px);}
  100% {transform: scale(1); opacity: 1; filter: blur(0);} 
}
.a_popin.show{
  animation: popin .35s ease-in-out forwards;
}
@keyframes popout {
  0% {transform: scale(0.3); opacity: 0;}
  100% {transform: scale(1); opacity: 1;} 
}

/*---------------------------------------
   Scroll Effect       
-----------------------------------------*/
body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

/* Remove animations or transitions on padding */
[style*="padding-right"] {
  transition: none !important;
}

::-webkit-scrollbar {
  width: 3.5px;
  height: 3.5px;
}
::-webkit-scrollbar-thumb {
  background: var(--btncolor);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--active);
  transition: all .3s;
}

#playlist::-webkit-scrollbar, .modal-body::-webkit-scrollbar, .dropdown ::-webkit-scrollbar{
  display: none;
}
.packageinfo p::-webkit-scrollbar {
  width: 3px;
  height: 3.5px;
}
.packageinfo p::-webkit-scrollbar-track {
  opacity: 0;
  background:  #dbdbdb;
} 


/*---------------------------------------
   COMMON      
-----------------------------------------*/
/* Avoid heavy layout on reveal and keep hidden stuff cheap */
#topUpModal, .modal, .offcanvas, .tab-pane { 
  will-change: transform, opacity; }
.tab-pane, #topUpModal { 
  content-visibility: auto; 
  contain-intrinsic-size: 800px 1200px; 
}

/* Images: prevent reflow + decode off main thread */
img { max-width: 100%; height: auto; }

::before, ::after{
  pointer-events: none;
}

body{
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0px;
  padding: 0px;
  color: var(--white);
  font-size:  var(--txt_s);
  font-weight: 200;
  font-family: var(--font);
  text-wrap: pretty;
  overflow-x: hidden !important;
  background-color: var(--black);
}

h2{
  margin: 0;
}

.pagination .page-link{
  color: #888888;
  font-weight: 600;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  border: 1px solid #b9b9b9;
  transition: none;
}
.pagination .page-link:hover, .pagination .page-link.active,.active>.page-link{
  color: var(--white);
  border: 1px solid var(--highlight);
  /* border: none; */
  background-image: linear-gradient(to bottom, rgba(224, 119, 244, 1), rgba(137, 26, 158, 1));
  transition: none;
}

.page-item:first-child .page-link {
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.page-item:last-child .page-link {
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}

.disabled>.page-link, .page-link.disabled{
  color: #b9b9b9;
  background: none;
  border: 1px solid #b9b9b9;
}

h1{
  color: var(--active);
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

button{
  --txt_s: 16px;
  font-size: var(--txt_s);
}
button p{
  margin: 0;
  font-weight: 600;
}

.form-check-input:checked, .form-check-input:target {
  background-color: var(--active);
  color: var(--black) !important;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")
}

.hidden-by-filter,
.hidden-by-fav { display: none !important; }

/*---------- modal ----------*/
.modal {
  z-index: 99999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
}
.modal-backdrop.show{
  opacity: 0;
}
.modal-content{
  position: relative;
  background: none;
  border-radius: 30px;
}
.modal-lg .modal-body{
  max-height: 80vh !important;
}
.modal-body{
  position: relative;
  background-image: linear-gradient(to top, #111111, #232323);
  border-radius: 30px;
  width: 100%;
  height: fit-content;
  /* min-height: 200px; */
  max-height: 400px;
  overflow: hidden;
  border: 3px solid #393939;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .75));
  padding: 0;
  overflow-y: scroll;
}

.modal-body li span{
  color: var(--active);
  font-weight: 600;
}

.modal-body img{
  width: 100%;
  height: fit-content  !important;
  max-height: 300px !important;
  object-position: center;
  object-fit: contain;
  align-self: center;
  justify-self: center;
}

.modal .btn_close{
  position: absolute;
  font-size: calc( var(--txt_body) - 2px);
  color: #696969;
  text-transform: uppercase;
  text-shadow: 0 1px #393939;
  padding-top: 1px;
  margin: 0;
  width: 75px;
  height: 35px;
  top: -25px;
  right: 35px;
  background-color: #111111;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-image: linear-gradient(to top, #111111, #232323);
  filter: drop-shadow(0 -2px #393939);
  transition: all .3s;
}
.modal .btn_close:hover{
  margin-top: 6px;
  color: var(--active);
  transition: all .3s;
}
.modal .divider {
  width: 115%;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.modal ol, .modal ul{
  padding: 0 30px;
}
.modal ol{
  margin-left: 15px;
}

.modal h6, .modal h5{
  margin: 0;
  display: inline;
}
.modal h6{
  line-height: 30px;
}
.modal h5{
  line-height: 16px;
}

.modal_header{
  width: 100%;
  padding: 30px 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  background: var(--darkgrey);
  position: sticky;
  top: 0;
  z-index: 10;
}
/*---------- modal ----------*/

/*---------- carousel ----------*/
.btn_prev, .btn_next{
  font-size: 15px;
  position: unset;
  width: 35px;
  height: 35px;
  background-color: var(--active);
  opacity: 100%;
  border-radius: 50%;
}
.btn_prev:hover, .btn_next:hover{
  background-color: var(--highlight);
}
/*---------- carousel ----------*/

/*---------- offcanvas ----------*/
.offcanvas-backdrop.show{
  opacity: 1;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
}
/*---------- offcanvas ----------*/

/*---------------------------------------
   NAVBAR        
-----------------------------------------*/
body:has(.navwrapper.show)::before{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 999;
}

.navigation{
  width: 100vw;
  display: flex;
  align-items: flex-start;
  padding-right: 0 !important;
}
.navigation-container{
  padding: 0 5%;
  height: 100px;
  display: flex;
  gap: 10px;
}
.navbar-brand{
  margin: 0;
  z-index: 99;
  pointer-events: all;
}
.navbar-brand img{
  max-width: 160px;
  transition: all .5s linear;
  height: 75px;
  margin: 5px 0;
}

.navwrapper{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 65px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.navbar-nav{
  height: 100%;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  transition: all .3s;
}
.navbar-nav:has(.icon){
  left: unset !important;
  right: 5% !important;
  transform: unset !important;
  transition: all .3s;
}

.navigationitem{
  width: fit-content;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: .3s;
  z-index: 5;
}

.hamburgerbtn span{
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
  text-align: center;
} 
.hamburgerbtn, .hamburgerbtn:active, .hamburgerbtn:focus, .hamburgerbtn:focus-visible{
  color: var(--white);
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0 20px;
  border-radius: 0;
  pointer-events: all;
}
.hamburgerbtn:hover{
  min-width: 65px;
  height: 65px;
  border: none;
}

.nav-link{  
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-transform: uppercase;
  text-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  gap: 6px;
  cursor: pointer;
  pointer-events: all;
  padding: 15px 50px !important;
}
.nav-link.icon {  
  padding: unset !important;
  width: 50px;
}
.nav-link.official{
  --p: 25px;
  padding: 15px var(--p) !important;
  transition: all .3s;
}

.navigationitem:hover .nav-link, .nav-link:hover, .nav-link.active, .nav-link:focus{
  color: var(--white) !important;
}

.navigationitem:hover:not(:has(.icon))::before, .navigationitem:has(.nav-link.official.active)::before { 
  content: "";
  position: absolute;
  border-radius: 50px;
  width: 80%;
  height: 100%;
  background: #00f3ff;
  mix-blend-mode: screen;
  opacity: 50%;
  pointer-events: none;
  filter: blur(5px);
}

.navbar-collapse.collapsing {
  height: 0;
  padding: 0;
  transition: all 0.3s ease;
}
.navbar-collapse.collapse {
  max-height: 100vh !important;
}

.navbar-collapse.collapsing .navbar-nav{
  display: none;
}

@keyframes hot {
  from { background-position: 0 0; }
  to   { background-position: -80px 0; } 
}
.nav-link.hot{
  position: relative;
}
.nav-link.hot::before{
  position: absolute;
  content: "";
  top: 0;
	left: calc(100% - (var(--p) + 10px));
  width: 20px;
  height: 20px;
  background: url(../img/hot.png) no-repeat;
  background-position: 0,0;
  background-size: auto 100%;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: hot .5s steps(4) infinite; 
}

@media screen and (max-width: 1299px) {
  .nav-link.official{
    --p: 15px;
    transition: all .3s;
  }
}
@media screen and (max-width: 1180px) {
  .nav-link.official{
    --p: 10px;
    transition: all .3s;
  }
}
@media screen and (max-width: 1110px) {
  .nav-link.official{
    --p: 5px;
    transition: all .3s;
  }
  .navbar-nav:has(.icon){
    right: 2% !important;
  }
  .navigation-container {
    padding: 0 2%;
  }
}

@media screen and (max-width: 991px) {
  .navigation{
    padding: 0;
    background-image: linear-gradient(to top, #111111, #232323);
    z-index: 99999;
    height: fit-content;
    border-bottom: var(--active) 2px solid;
  }
  .navbar-brand img{
    padding-left: 10%;
    margin: 0;
    height: 55px;
  }
  .navigation-container{
    padding: 0 2vw;
    height: fit-content;
  }
  .navwrapper {
    position: relative !important;
    transform: unset !important;
    right: unset !important;
    left: unset !important;
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100vw;
    height: fit-content;
    flex-direction: column;
    transition: all 0.3s ease; 
  }
  .navbar-nav, .navigationitem:not(:has(.icon)){
    width: fit-content;
    max-width: 80vw;
    height: fit-content !important;
  }

  .navigationitem{
    height: unset;
    padding: 0;
  }
  li.biggap{
    gap: 15px;
  }

  .navbar-nav{
    position: relative !important;
    transform: unset !important;
    right: unset !important;
    left: unset !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: unset !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    filter: none !important;
    background: none !important;
    overflow: visible !important;
  }
  .navbar-nav::before, .navbar-nav::after{
    content: none !important;
  }
  .nav-link.official{
    --p: 25px;
  }
  .offcanvas{
    max-height: calc(100vh - var(--navH)) !important;
    top: var(--navH) !important;
  }
}
@media screen and (max-width: 768px) {
  .offcanvas{
    width: 100% !important;
  }
}

/*---------------------------------------
   ELEMENTS
-----------------------------------------*/
.element_child{
  position: absolute;
  pointer-events: none;
}

.effectvideo{
  position: absolute;
  width: 100%;
  bottom: 0;
  mix-blend-mode:screen;
  /* opacity: .15; */
  pointer-events: none;
  z-index: -1;
}

.brd_r35{
  border-radius: 35px;
  border: 3px solid #393939;
}

.topgap{
  margin-top: 60px;
  padding-bottom: 0;
}

.bottomline{
  position: relative;
  width: 100%;
  overflow: visible;
}
.bottomline::after{
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #9bdddd;
}

.halftone, #playlist li.active, #filterList li.active{
  position: relative;
  overflow: hidden;
}
#playlist li.active, #filterList li.active{
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.halftone *{
  z-index: 2;
}
.halftone::before, #playlist li.active::before, #filterList li.active::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/pattern.png) top repeat;
  background-size: 100px;
  mix-blend-mode: soft-light;
  opacity: .35;
  z-index: 1;
  pointer-events: none;
}
.beat::before{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../img/beat.gif) bottom repeat-x;
  background-size: contain;
  z-index: 5;
  mix-blend-mode: screen;
  opacity: .35;
  pointer-events: none;
}

.btn_cta, .navbar-nav.halftone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  background-image: var(--gradient);
  
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 50px;
  pointer-events: all;
  border-radius: 50px;
  height: 50px;
  cursor: pointer;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .5));
}
.btn_cta.icon{
  padding: unset;
  width: 50px;
  height: 50px;
}

.btn_cta:hover{
  background-image: linear-gradient(to right, #e077f4, #891a9e);
  transition: all .3s;
}
.btn_cta::after, .btnlight::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 85%;
  height: 50%;
  border-radius: 35px;
  background-image: linear-gradient(to top, rgb(0, 0, 0), rgb(255, 255, 255) 70%);
  mix-blend-mode: screen;
  opacity: .35;
}
.btn_cta.icon::after {
  width: 60%;
}
.btnlight::after{
  width: 95%;
}
.halftone.btnlight{
  text-shadow: none;
}
.price_wrapper.btnlight::after ,.mPoint_wrapper.btnlight::after{
  opacity: .15;
}

.btn_mute span{
  color:white;
  font-size:18px;
}

.btn_download{
  border: 2px solid var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  border-radius: var(--btn_dl); 
  padding: 0 50px;
  max-width: 80vw;
  height:  var(--btn_dl); 
  z-index: 5;
  animation: zoom .75s infinite alternate-reverse;
}
.btn_download p{
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 0;
}
.btn_download span {
  padding-left: 2px;
  color:var(--white); 
  font-size: 2.5rem;
  font-weight: 600;
}

.btn_clear{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  gap: 5px;
  opacity: .5;
}
.btn_clear span{
  font-size: 16px;
}
.btn_clear:hover{
  opacity: 1;
}

.btn_3d {
  position: relative;
  min-width: unset;
  max-width: 250px;
  min-height: 50px !important;
  aspect-ratio: unset;
  padding: 10px 25px;
  background-image: linear-gradient(to top, #111111, #232323);
  border-radius: 30px;
  border: 3px solid #393939;
  filter: drop-shadow(0 6px 0 rgb(0, 0, 0));
  color: #696969 !important;
  font-weight: 400;
}
.btn_3d:hover {
  color: var(--active) !important;
  transform: translateY(6px);
  border: 3px solid var(--active);
  box-shadow: 0px 0px 21.7px 0px var(--active) inset !important;
  filter: unset;
  transition: none;
}

.btn_3d span{
  font-size: 18px;
}

.btn_fav{
  --active: #ff219b;
}
.btn_fav:hover, .btn_fav:hover span{
  opacity: .85 !important; 
  color: var(--active) !important;
}
.btn_fav:hover span{
  transform-origin: center;
  transform: scale(.98);
}
  .btn_fav.active, .btn_fav.active span{
  opacity: 1 !important; 
  color: var(--active) !important;
}


/* .btn_cart:not(.btn_3d){
  position: absolute;
  top: 0;
  left: 0; 
  background: #393939;
  padding: 10px 12px;
  padding-bottom: 8px;
  margin: 0;
  border-bottom-right-radius: 15px;
  z-index: 100;
}

.btn_cart:not(.btn_3d) span{
  font-size: 18px;
}
.btn_cart:not(.btn_3d):hover span{
  color: var(--black);
}
.btn_cart:not(.btn_3d):hover{
  background: var(--active) !important;
} */

.bottomline:has(.btn_download):after{
  content: "";
  position: absolute;
  bottom: calc(var(--btn_dl) / 2);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-color: #393939;
}

.title{
  width: fit-content;
  max-width: 100%;
  z-index: 15;
}
.title_txt {
  font-weight: 700;
  margin: 0;
  padding: 5px 35px;
  border-radius: 50px;
  color: var(--black);
  background-color: var(--active);
  text-align: center;
}

.watermark{
  position: relative;
}
.watermark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 100%;
  background: url(../img/logo.png) center no-repeat;
  background-size: contain;
  z-index: -1;
  filter: saturate(0);
  mix-blend-mode: luminosity;
  opacity: 20%;
}

/*---------------------------------------
  DROPDOWN
-----------------------------------------*/
.dropdown {
  position: relative;
  width: 100%;
}
.dropdown_toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 10px 15px;
  height: 35px;
  font-weight: 700;
  color: var(--btncolor);
  border-radius: 15px;
  border: 2.5px solid #393939;
  cursor: pointer;
  gap: 10px;
}
.dropdown_toggle:hover{
  background:  #393939;
  color: var(--active);
}

.dropdown_menu{
  display: none;
  position: absolute;
  width: fit-content;
  min-width: 100%;
  height: calc(40px * 5);
  background-image: linear-gradient(to top, #111111, #232323);
  margin-top: 5px;
  border-radius: var(--p_s);
  z-index: 99999;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
  overflow: hidden;
  overflow-y: scroll;
}

.dropdown_menu li {
  height: fit-content;
  padding: 10px 25px !important;
  color: var(--white);
  cursor: pointer;
}

.dropdown_menu li:hover {
  background: var(--highlight);
}

.dropdown_menu li:not(:last-child) {
  border-bottom: 1px solid rgba(57, 57, 57, .5);
}

/*---------------------------------------
   Music Player
-----------------------------------------*/
#musicPlayer {
  --cd: 166px;
  position: fixed;
  top: 50%;
  right: calc(calc(var(--cd) / -2) - 5px);
  transform: translateY(-75%);
  z-index: 99;
  width: var(--cd);
  height: var(--cd);
}
#musicPlayer span {
  position: absolute;
  cursor: pointer;
  background: url(../img/cd.png) top left no-repeat;
  background-size: contain;
  width: var(--cd);
  height: var(--cd);
  transform-origin: center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .75));
  transition: all .3s;
}
#musicPlayer:hover span, #musicPlayer.active span{
  filter: drop-shadow(0 0 12px rgba(217, 252, 255, 0.5));
  --cd: 160px;
}
#musicPlayer.active span{
  filter: drop-shadow(0 0 12px rgba(217, 252, 255, 0.5));
  --cd: 160px;
  animation: rotate 3s linear infinite;
  transition: all .25s;
}

#musicPlayer::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 198px;
  height: 194px;
  rotate: -15deg;
  transform-origin: right bottom;
  background: url(../img/cd_player.png) right bottom no-repeat;
  background-size: contain;

  transition: all .3s;
  z-index: 3;
}
#musicPlayer:hover::before, #musicPlayer.active::before{
  rotate: -3deg;
  transition: all .3s;
}
#musicControls .modal-content{
  position: relative;
  background: none;
  border-radius: 30px;
}
#musicControls .modal-body{
  background-image: linear-gradient(to top, #111111, #232323);
  border-radius: 30px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 3px solid #393939;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .75));
}

.musicbtnwrapper{
  position: relative;
  overflow: hidden;
  cursor: unset;
  background-image: linear-gradient(to right, rgba(23, 224, 238, .8), rgba(224, 119, 244, .8));
}
.musicbtn{
  cursor: pointer;
  font-size: 20px;
  width: 35px;
  height: 35px;
  padding: 30px;
}
.musicbtn:hover{
  font-size: 18px;
  filter: drop-shadow(0 0 12px var(--active));
}

#playlist, #filterList{
  list-style: none;
  padding: 0;
  width: 100%;
  height: 200px;
}
#filterList{
  height: fit-content;
  max-height: 300px;
}
#playlist li, #filterList li{
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 15px 25px;
}
#playlist li p, #filterList li p{
  margin: 0;
  padding: 0;
}
#playlist li:hover , #filterList li:hover{
  background-color: rgb(44, 44, 44);
  color: white;
}
#playlist li.active, #filterList li.active{
  background-image: var(--gradient2);
  color: white;
}

@media screen and (max-width: 1020px) { 
  #musicPlayer{
    display: none;
  }
}

.volume-controller {
  position: absolute;
  color: #696969;
  text-transform: uppercase;
  text-shadow: 0 1px #393939;
  padding-top: 1px;
  margin: 0;
  width: 40%;
  height: 15px;
  top: -15px;
  left: 35px;
  gap: 5px;
  background-color: #111111;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-image: linear-gradient(to top, #111111, #232323);
  filter: drop-shadow(0 -2px #393939);
  transition: all .3s;

  padding-right: 30px;
}

#volume {
  --thumb-size: 6px; /* Thumb size */
  -webkit-appearance: none; 
  appearance: none;
  width: 100%;
  height: 2px;
  background: #696969;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 2px; 
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
}

#volume::-webkit-slider-thumb {
  -webkit-appearance: none; /* Remove default thumb styling */
  appearance: none;
  height: var(--thumb-size); /* Thumb height */
  width: var(--thumb-size); /* Thumb width */
  background: var(--active); /* Thumb background color */
  border-radius: 50%; /* Make thumb circular */
  cursor: pointer;
}

/* Firefox */
#volume::-moz-range-thumb {
  height: var(--thumb-size); /* Thumb height */
  width: var(--thumb-size); /* Thumb width */
  background: var(--active); /* Thumb background color */
  border-radius: 50%; /* Make thumb circular */
  cursor: pointer;
}

/* Internet Explorer */
#volume::-ms-thumb {
  height: var(--thumb-size); /* Thumb height */
  width: var(--thumb-size); /* Thumb width */

  background: var(--active); /* Thumb background color */
  border-radius: 50%; /* Make thumb circular */
  cursor: pointer;
}

#volumeIcon{
  cursor: pointer;
}
#volumeIcon span{
  font-size: calc(var(--txt_body) + 2px);
}

/*---------------------------------------
   Song Progress
-----------------------------------------*/
#songProgress {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  position: relative;
  cursor: pointer;
}

#songprogressBar {
  position: relative;
  width: 0%;
  height: 100%;
  background-image: linear-gradient(to left,  #e077f4, #891a9e);
  transition: width 0.1s linear;
}

#songprogressBar::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5px;
  width: 9px;
  height: 9px;
  background-color: var(--active);
  background-color: #e077f4;
  border-radius: 50%;
  z-index: 9;
  animation: zoom 1s infinite;
}
#songprogressBar::before:hover{
  width: 10px;
  height: 10px;
  transition: all .3s;
}

/*---------------------------------------
   Topup
-----------------------------------------*/
#topUpBtn{
  --cd: 120px;
  width: var(--cd);
  max-width: 120px;
  aspect-ratio: 127 / 206;
  position: fixed;
  bottom: 5%;
  right: 0;
  filter: drop-shadow(0 0 6px rgba(217, 252, 255, 0.5));
  background: url(../img/btn_sidebar.png) center right no-repeat;
  background-size: contain;
  z-index: 99;
  animation: slideinright .5s ease-in-out backwards;
  animation-delay: 100ms;
}
#topUpBtn:hover{
  background: url(../img/btn_sidebar-hover.png) center right no-repeat;
  background-size: contain;
}

#topUpModal{
  --tabbtn_h: 70px;
  --topbanner_h: 150px;
  --prgWrapper: 110px;
  --dailytab_h: 45px;
  background-image: linear-gradient(to top, #EFFCFF, #9EEDFF);
  background-image: linear-gradient(to top, #F8E6FF, #ECBBFF);
  overflow: visible;
}
#topUpModal *{
  z-index: 5;
}
#topUpModal::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../img/bg3.png) top no-repeat;
  background-attachment: fixed;
  background-size: cover;
  mix-blend-mode: overlay;
  z-index: 0;
}
#topUpModal .btn-close{
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 99;
  filter: invert(1);
}
@media screen and (max-width: 500px) { 
  #topUpBtn {
    --cd: 30vw;
  }
}
.topuptab_wrapper{
  height: var(--tabbtn_h);
  background: linear-gradient(to top, #bd93fc, #d6bdfd);
  z-index: 90;
}

.topuptab_btn{
  --txt_s: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 10px;
  gap: 0;
}
.topuptab_btn p{
  position: absolute;
  left: 50%;
  bottom: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--txt_s);
  font-weight: 600;
  line-height: calc(var(--txt_s) - 2px);
  z-index: 5;
  transform-origin: bottom center;
  transform:  translateX(-50%) scale(0);
  opacity: 0;
  transition: all .3s;
}
.topuptab_btn.active p{
  transform:  translateX(-50%) scale(1);
  margin-bottom: 15px;
  opacity: 1;
  transition: all .3s ease;
}
.topuptab_btn:hover, .topuptab_btn.active{
  background: linear-gradient(to top, var(--active), #d8ffff);
  transition: all .3s;
}
.topuptab_btn:not(:last-child)::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 90%;
  background: linear-gradient(to top, var(--white), rgba(255, 255, 255, 0));
  border-left: 1px solid rgba(0, 0, 0, .15);
}
.topuptab_btn span{
  width: 100%;
  max-width: 90px;
  max-height: 90px;
  aspect-ratio: 1 / 1;
  margin-bottom: -20px;
  filter: drop-shadow(0 0 6px rgb(255, 255, 255));
  transform: scale(0.85);
}
.topuptab_btn.active span{
  margin-bottom: 10px;
  transform: scale(1);
}
.topuptab_btn.accum span{
  background: url(../img/topup/tab_accumulate.png) center no-repeat;
  background-size: contain;
}
.topuptab_btn.daily span{
  background: url(../img/topup/tab_daily.png) center no-repeat;
  background-size: contain;
}
.topuptab_btn.first span{
  background: url(../img/topup/tab_first.png) center no-repeat;
  background-size: contain;
}

.topUpBanner_wrapper{
  height: var(--topbanner_h);
  position: relative;
  background: url(../img/topup/topbanner.png) bottom center no-repeat;
  background-size: cover;
  align-items: flex-end !important;
}
.topUpBanner_wrapper::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0,0,0,0));
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
}

.topUpBanner_wrapper h2{
  --txt_l: 30px;
  --highlight: #762bac;
  color: var(--white);
  font-size: var(--txt_l);
  line-height: var(--txt_l);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 5px;
}
@media screen and (max-width: 500px) { 
  .topUpBanner_wrapper h2{
    --txt_l: 24px;
  }
}

.txt_stroke, .marklabel, .topUpBanner_wrapper h2, .topuptab_btn p{
  text-shadow: 2px 0 var(--highlight), -2px 0 var(--highlight), 0 2px var(--highlight), 0 -2px var(--highlight), 1px 1px var(--highlight), -1px -1px var(--highlight), 1px -1px var(--highlight), -1px 1px var(--highlight), 0px 3px var(--highlight), 1px 3px var(--highlight), -1px 3px var(--highlight);
}

.topUpevent_date{
  color: var(--active);
  font-weight: 600;
  gap: 5px;
}
.topUpevent_date span{
  font-size: 16px;
}

.btnDaily_wrapper{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  gap: 0;
  margin-top: -10px;
  height: var(--dailytab_h);
}
.btn_dailyTU{
  position: relative;
  color: white;
  height: var(--dailytab_h);
  padding: 5px 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  background: linear-gradient(to top, #762bac, #9133d4);
  flex-grow: 1;
}
.btn_dailyTU:not(.active):hover{
  filter: brightness(1.1);
}
.btn_dailyTU.active{
  background: linear-gradient(to top, #e077f4, #e3a2f0);
}
.btn_dailyTU p{
  font-weight: 900;
  font-size: 20px;
}
.btn_dailyTU.active p{
  color: var(--highlight);
}

.topUpMission_wrapper{
  max-height: calc(100vh - var(--tabbtn_h) - var(--topbanner_h) - var(--prgWrapper) - var(--dailytab_h) + 10px);
  padding-bottom: 50px;
}
.topUpMission{
  width: 90%;
  padding: 15px;
  min-height: fit-content;
  border: 1px solid #e5d3fb;
  background: linear-gradient(to top, #e5d3fb, #baa8ff);
  border-radius: 10px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}
.topUpMission h6{
  margin: 0;
}
#topUpModal .btn_cta{
  color: var(--white);
}

.missionReward{
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e5d3fb;
  background: linear-gradient(to top, #baa8ff, #936cc2);
}

.btn_claim{
  border-radius: 15px;
  padding: 15px;
}
.btn_claim[disabled]{
  filter: grayscale(1);
  pointer-events: none;
}

@media screen and (max-width: 992px) { 
  .topUpMission_wrapper {
    max-height: calc(100vh - var(--navH) - var(--tabbtn_h) - var(--topbanner_h) - var(--prgWrapper) - var(--dailytab_h) + 10px);
  }
}

/*---------------------------------------
   Topup_ProgressBar
-----------------------------------------*/
.progress_wrapper{
  width: 100%;
  height: var(--prgWrapper);
  position:relative;
  padding: var(--p_s);
  padding-bottom: 80px;
  /* border-top: 2px solid #e3a2f0; */
  border-bottom: 3px solid #cb60e0;
  background: linear-gradient(to bottom, #e077f4, #891a9e);
  filter: drop-shadow(0 2px 6px #4b1357);
}

/* Track */
.progress_track{
  position:relative;
  height: 10px;
  border-radius: 15px;
  background:linear-gradient(to top, #891a9e, #ae24ca);
  border: 1px solid #762bac;
  overflow:hidden;
}

/* Fill */
.progress_fill{
  position:absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background:linear-gradient(to right, #9fffff, var(--active));
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255,.25);
  transition:width .6s cubic-bezier(.22,.9,.3,1);
}

/* Labels (numbers above the track) */
.marklabel{
  position: absolute;
  top: calc(var(--p_s) - 5px);
  transform: translateX(-50%);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  letter-spacing:.3px;
}

.progress_marks{ 
  width: 85%;
  position: absolute; 
  left: var(--p_s); 
  right: var(--p_s);
  top:0; 
  bottom:0; 
}
.progress_reward{
  position: absolute;
  top: calc(var(--p_s) + 15px);
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.3));
  background: url(../img/topup/rewardbg_round.png);
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.progress_reward img{
  max-width: 80%;  
  max-height: 80%;
  align-self: center;
  object-fit: contain;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.3));
}
.progress_reward:hover img{
  transform: scale(1.2);
  filter: drop-shadow(0 6px 8px rgba(255, 255, 255, 0.3));
  transition: all .3s;
}

/*---------------------------------------
   KV
-----------------------------------------*/
#KV, #Showcase, #Gallery, #News, #Guide, #Download, #Shop{
  position: relative;
  top: 0;
  max-width: 100vw;
  height: fit-content;
  background: url(../img/bg.png) top center no-repeat;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  scroll-snap-align: center;
}
#KV{
  padding-bottom: 150px;
  background-size: cover;
}

#KV::before{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  opacity: .25;
  z-index: 0;
  background: url(../img/beat.gif) bottom repeat-x;
  background-size: auto 30%;
}

.kvlogowrapper{
  position: relative;
}

.kvlogowrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-62%);
  width: 100%;
  height: 100%;
  background: url(../img/beatline.gif) center no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
}

@keyframes logovideo{
  from {opacity: 1;}
  to {opacity: 0;}
}

.logovideo{
  display: none;
 }
 .kvlogo{
   opacity: 1;
   animation: unset;
 }

@media screen and (min-width: 768px) { 
  .logovideo{
    display: unset;
    position: absolute;
    z-index: 5;
    width: 1470px;
    max-width: 228vw;
    top:-82px;
    left: 50%;
    transform: translateX(calc(-50% + 5px));
  
    animation: logovideo 1s forwards;
    animation-delay: 6s;
  }
  
  .kvlogo{
    opacity: 0;
    animation: logovideo 1s reverse forwards;
    animation-delay: 3s;
  }
}

/*---------------------------------------
   Showcase
-----------------------------------------*/
#Showcase{
  max-height: fit-content;
  background: var(--black);
  overflow: visible;
}
#Showcase::before, #Gallery::before, #News::before, #Guide::before, #Download::before, #Shop::before{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/showcase/bg.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

#Showcase::after{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 10%;
  background-image: linear-gradient(to bottom, #111111, #00000000);
}

.gameplaywrapper {
  position: relative;
  width: fit-content;
  max-width: 90vw;
  padding: var(--p_l) 0;
  z-index: 2;
  border-radius: 35px;
  border: 3px solid #393939;
}

.gameplaytltwrapper{
  position: absolute;
  width: 800px; 
  max-width: 80vw; 
  z-index: 5; 
  bottom: calc(100% - 25px);
}


.gameplaytabwrapper, .guidetabwrapper, .guidesubtabwrapper{
  width: 100%;
  overflow: hidden;
  overflow-x: scroll;
  padding: 15px var(--p_l);
  scroll-snap-type: x mandatory;
}
.guidetabwrapper{
  width: 1200px;
  max-width: 100vw;
  margin: auto;
  padding: 15px;
}
.gameplaytabwrapper::-webkit-scrollbar, .guidetabwrapper::-webkit-scrollbar, .guidesubtabwrapper::-webkit-scrollbar{
  display: none;
}

.gameplaytab, .guidetab, .shoptab{
  position: relative;
  max-width: 250px;
  min-width: 200px;
  aspect-ratio: 1 / 1;
  background-image: linear-gradient(to top, #111111, #232323);
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  border: 3px solid #393939;
  filter: drop-shadow(0 6px 0 rgb(0, 0, 0));
  cursor: pointer;
  transition: all .3s;
}

.gameplaytab::before, .guidetab::before, .shoptab::before{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  background-image: linear-gradient(to top, var(--black), rgba(0,0,0,0));
  mix-blend-mode: multiply;
  opacity: .75;
  z-index: 1;
}

.gameplaytab img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: .25;
  transition: all .3s;
  pointer-events: none;
}

.gameplaytlt, .guidetlt{
  position: absolute;
  background: none;
  font-size: var(--txt_l);
  color: #696969;
  text-shadow: 0 1px #393939;
  transition: all .3s;
  user-select: none;
  z-index: 2;
  white-space: nowrap;
}
.gameplaytab.active{
  transform: translateY(3px);
  border: 3px solid var(--active);
  filter: drop-shadow(0 3px 0 var(--active)) ;
}
.gameplaytab:hover, .guidetab:hover, .guidetab.active ,.guidetab.active:active ,.guidetab.active:focus{
  transform: translateY(6px);
  border: 3px solid var(--active);
  box-shadow: 0px 0px 21.7px 0px var(--active) inset !important;
  filter: unset;
  transition: all .3s;
}
.gameplaytab:hover .gameplaytlt , .guidetab:hover .guidetlt{
  color: var(--active);
  transition: all .3s;
}
.gameplaytab.active:active img{
  filter: grayscale(50%);
  opacity: .8;
  transition: all .3s;
}
.gameplaytab.active img{
  filter: grayscale(0%);
  opacity: 1;
  transition: all .3s;
}
.gameplaytab.active .gameplaytlt{
  scale: .8;
  color: var(--active);
  color: var(--white);
  bottom: 5%;
}

#gameplayContent, #guideContent{
  border: 3px solid #393939;
  background-image: linear-gradient(to top, #050505, #141414);
  width: 800px;
  border-radius: 15px;
  padding: 15px 25px;
  font-size: 14px;
}
#gameplayContent b{
  color: var(--active);
  text-transform: uppercase;
}
button.showcasevideo , button.grey{
  --btnsize: 50px;
  background: #111111;
  border-radius: 30px; 
  border: 2.5px solid #393939;
  width: var(--btnsize); 
  height: var(--btnsize); 
  color: var(--btncolor);
  gap: 5px;
}
button.showcasevideo{
  aspect-ratio: 1 / 1;
}

button.grey{
  --btnsize: 30px;
  width: fit-content;
}

button.showcasevideo:hover, button.grey:hover, button.grey.active{
  background: #393939;
  transition: all .3s;
  color:var(--active);
}
button.showcasevideo span, button.grey span, button.grey{
  font-weight: 600;
  color:#616161;
}
button.showcasevideo span{
  padding-left:2px;
}
button.showcasevideo:hover span, button.grey:hover span{
  color:var(--active);
  transition: all .3s;
}

@media screen and (max-width: 520px) { 
  .gameplaytltwrapper{
    justify-content: center !important;
  }
}

/*---------------------------------------
   GALLERY
-----------------------------------------*/
#Gallery{
  z-index: 15 !important;
  background-image: linear-gradient(to top, #EFFCFF, #9EEDFF);
  overflow: visible;
}
#Gallery::before{
  background: url(../img/bg3.png) top no-repeat;
  background-attachment: fixed;
  background-size: cover;
  mix-blend-mode: overlay;
}

.charwrapper{
  position: absolute;
  z-index: 15 !important;
  width: 1200px;
  min-width: 1000px;
  max-width: 100vw;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.charwrapper img{
  min-height: fit-content;
  height: fit-content;
}
@media screen and (max-width: 1020px) { 
  .charwrapper{
    display: none;
  }
}

.tv_top {
  width: 600px;
  max-width: fit-content;
  position: relative;
  height: 100%;
  padding: var(--p_l);
  background: url(../img/package/tv_top.png) top no-repeat;
  background-size: 100% 100%;
  z-index: 3;
}
.tv_ctr{
  --buttonsize: 40px;
  position: relative;
  width: 100%;
  height: fit-content;
  padding: 10px var(--p_l);
  /* margin-top: -5px; */
  background: url(../img/package/tv_ctr.png) top repeat-y;
  background-size: 100% auto;
}
.tv_btm{
  width: 100%;
  height: 167px;
  background: url(../img/package/tv_btm.png) top no-repeat;
  background-size: contain;
}

#galleryTab{
  border: none;
  flex-wrap: nowrap;
}
.btn_indicator {
  width: var(--buttonsize);
  height: var(--buttonsize);
  padding: 0 !important;
  border: none !important;
  border-radius: 50px;
  background-image: linear-gradient(to bottom, #d77cd1, #efb4ea);
  filter: drop-shadow(0 -1px #d692d1) drop-shadow(0 1px var(--white));
}
.btn_indicator:hover{
  background-image: linear-gradient(to top, #e077f4, #891a9e);
  filter: drop-shadow(0 -2px #5a1069) drop-shadow(0 1px var(--white));
}

#carouselGallery {
  width: 100%;
  height: fit-content;
  border-radius: 5px;
  background-color: var(--black);
  filter:
  drop-shadow(0 -2px #d692d1)
  drop-shadow(-2px 0 #d692d1)
  drop-shadow(2px 0 #d692d1)
  drop-shadow(0 2px var(--white)) ;
  overflow: hidden;
}

#carouselGallery .carousel-inner {
  max-width: fit-content;
  aspect-ratio: 16 / 9;
  background: var(--black);
  display: flex;
  align-items: center;
}
#carouselGallery .carousel-item {
  width: 100%;
}
#carouselGallery .carousel-item img {
  width: 100%;
}

@media screen and (max-width: 700px) { 
  .tv_top{
    width: unset;
    min-width: 320px;
  }
}

@media screen and (max-width: 500px) { 
  .tv_ctr, #GalleryTab{
    --buttonsize: 30px;
  }
}

/*---------------------------------------
  NEWS
-----------------------------------------*/
#News, #Guide ,#Download, #Shop{
  content: "";
  top: 0;
  width: 100%;
  min-height: calc(100vh - 180px);
  z-index: 0;
  background-image: linear-gradient(to top, #EFFCFF, #9EEDFF);
}
#News::before{
  background: url(../img/bg2.png) top no-repeat;
  background-attachment: fixed;
  background-size: cover;
  mix-blend-mode: overlay;
}

.newsmainwrapper, .guidemainwrapper, .eventmainwrapper{
  width: 100%;
  position: relative;
  padding: 50px 0;
}
.topnavbar{
  position: relative;
  max-width: 1200px;
}
#News_filtertab{
  width: fit-content;
  max-width: 100vw;
  overflow: hidden;
  overflow-x: scroll;
}

#News_filtertab::-webkit-scrollbar {
  display: none;
}

#News_filtertab .filtertab{
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-wrap: nowrap;
  font-size: 16px;
  gap: 6px;
  cursor: pointer;
  pointer-events: all;
  padding: 15px 50px !important;

  color: grey !important;
  font-weight: 400;
  border-bottom: 3px solid rgba(0,0,0,0);
}

#News_filtertab .filtertab:hover, #News_filtertab .filtertab.active{
  color: var(--highlight) !important;
  font-weight: 600;
  border-bottom: 3px solid var(--highlight);
}

.news_item{
  width: 100%;
  color: var(--highlight);

  flex-wrap: wrap;
}
.news_itemwrapper{
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  column-gap: 35px;
  padding: 0 25px;
}

.news_item::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(224, 119, 244, 1), rgba(137, 26, 158, 1));
  z-index: 0;
  opacity: 0;
}
.news_item:hover::before {
  opacity: 100%;
}
.news_item:hover::after {
  content: "";
  position: absolute;
  height: 100%;
  background: url(../img/pattern.png) top repeat;
  background-size: 100px;
  mix-blend-mode: soft-light;
  opacity: .35;
  z-index: 1;
}
.news_item:hover *{
  color: var(--white);
}
.news_item:hover .news_img img{
  scale: 1.1;
  transition: all .3s;
}
.news_img{
  height: 150px; 
  width: 250px; 
  border-radius: 35px;
  overflow: hidden;
  margin: 15px;
}
.news_img img{
  height: 100%; 
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.news_content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding-bottom: 15px;
}
.news_item p{
  margin: 0;
}
.news_date{
  width: fit-content;
  font-size: 12px;
  color: var(--white);
  padding: 2px 10px;
  border-radius: 35px;
  background: var(--highlight) !important;
}
.news_title{
  margin: 0;
  font-size: 30px;
}
.news_descript{
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 490px;
  max-width: 80vw; /* Adjust as needed */
  display: inline-block;
}

@media screen and (max-width: 768px) { 
  .topnavbar{
    justify-content: center !important;
  }
  .news_itemwrapper{
    justify-content: center !important;
    padding: 20px 0;
  }
}

/*---------------------------------------
  NEWS-CONTENT
-----------------------------------------*/
#News_content{
  width: 1200px;
  max-width: 90vw;
  color:var(--highlight) !important;
}
#News_content img{
  width: 100%;
  max-width: 100%;
  height: auto !important;
  object-fit: cover;
  object-position: center;
}
#News_content p:not(.news_date){
  font-size: 18px;
}

/*---------------------------------------
  GUIDE
-----------------------------------------*/
#Guide::before, #Download::before{
  background-attachment: fixed;
}
#guideContent{
  width: 1200px;
  min-height: 300px;
  padding: 0;
  background-attachment: fixed;
}

#guideContent > .tab-pane{
  width: 100%;
  z-index: 5;
}
.guidetlt {
  position: unset;
  font-size: 20px;
  padding: 0;
}

.guide_subtab{
  text-transform: uppercase;
  padding: 10px;
  padding-top: 20px;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 400;
  color: #393939;
}

.guide_subtab.active{
  color: var(--active);
}


.guidetabwrapper{
  --highlight: #ba3cd3;
  max-width: 100%;
}
.guidesubtabwrapper{
  max-width: 100%;
}

.guidesubcontent{
  border-top: 1px solid #393939;
}

.guidesubcontent * {
  font-family: 'DM Sans' !important;
}

.guidesubcontent h6{
  font-size: 20px;
  color: var(--active);
}
.guidesubcontent p{
  font-size: 16px;
}

.guidesubcontent img{
  width: 100%;
  max-width: fit-content;
  object-fit: cover;
  object-position: center;
  margin: auto;
}

.guidetab{
  aspect-ratio: unset;
  max-width: unset;
  min-width: fit-content;
  height: unset;
  width: unset;
  padding: 10px 35px;
  flex-grow: 2;
}

.guidetab:nth-child(even):hover, .guidetab:nth-child(even).active ,.guidetab:nth-child(even).active:active ,.guidetab:nth-child(even).active:focus{
  transform: translateY(6px);
  border: 3px solid var(--highlight);
  box-shadow: 0px 0px 21.7px 0px var(--highlight) inset !important;
  filter: unset;
  transition: all .3s;
}
.guidetab.active .guidetlt{
  color: var(--active);
  transition: all .3s;
}
.guidetab:nth-child(even):hover .guidetlt, .guidetab:nth-child(even).active .guidetlt{
  color: var(--highlight);
  transition: all .3s;
}

@media screen and (max-width: 768px) { 
  .guidetabwrapper{
    flex-wrap: nowrap;
  }
}

/*---------------------------------------
   MARQUEE
-----------------------------------------*/
@keyframes marqueescroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#marqueeBar, #marqueeBar2{
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50px;
  background-image: linear-gradient(to right, #A143A0, #8A2A89);
  rotate: -1deg;
  z-index: 5;
}
#marqueeBar2{
  background-image: linear-gradient(to right, #44E7E7, #38ABDC);
  top: 0;
  rotate: 1deg;
}
.marquee {
  height: 100%;
  position: absolute;
  overflow: hidden;
  mix-blend-mode: soft-light;

}
.marquee-content {
  display: flex;
  animation: marqueescroll 50s linear infinite forwards;
}
.marquee-content img{
  height: fit-content;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
}

.video_feature {
  background: var(--black);
  position: relative;
  background-image: linear-gradient(to top, #111111, #232323);
  border-radius: 30px;
  width: 100%;
  max-width: 730px;
  height: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 3px solid #393939;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .75));
  padding: 30px 25px;
}

table *, .tbody {
  background: none !important;
}

/*---------------------------------------
  FORM
-----------------------------------------*/
input{
  height: 50px;
  padding: 0 25px;
  border-radius: 50px;
  color: var(--white);
  background-color: var(--darkgrey);
  border:#b1b1b1 1px solid;
}

.checkbox_radio{
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  margin-bottom: 1px;
  cursor: pointer;
}

.radio-style:checked {
  background-color: var(--active); 
}

.checkbox_radio {
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  -webkit-appearance: none;
  appearance: none; 
  margin-bottom: 1px;
  cursor: pointer;
}

.checkbox_radio:checked {
  border: 2px solid white;
  background-color: var(--active);
}

.stickybarbtmwrapper {
  row-gap: 20px !important;
  padding: 20px;
  padding-bottom: 25px;
  overflow: visible;
}

@media screen and (max-width: 1430px) { 
  .stickybarbtmwrapper, .ms_rewardwrapper, .formwrapper{
    align-items: center;
    justify-content: center;
  }
}