:root {
  color-scheme: light only;
  --black: #111111;
  --darkgrey: #232323;
  --active: #c22026;
  --highlight3: #ffd83d;
  --highlight2: #6536af;
  --highlight: #a9ff32;
  --gradient: linear-gradient(to right, #1a5193, #6536af);
  --white: #eeeeee;
  
  --border_s: 30px;
  --border_l: 60px;
  --mainfont: "DM Sans", sans-serif;
  --txt_heading: 25px;
  --txt_slogan: 35px;
  --txt_body: 14px;
  --txt_nav: 18px;
  --txt_l: 25px;
  --txt_s: 16px;

  --p_l: 50px;
  --p_s: 15px;
  --btn: 50px;
}

@media only screen and (max-width: 768px) {
  :root {
    --txt_heading: 20px;
    --txt_slogan: 23px;
    --txt_body: 12px;
    --txt_l: 18px;
    --txt_s: 12px;

    --p_l: 25px;
    --p_s: 15px;
  } 
}

/*---------------------------------------
   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: .98}
}

@keyframes textglow{
  from{ text-shadow: var(--highlight2) 0 0 0;}
    to{ text-shadow: var(--highlight2) 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 expand {
  0% {opacity: 1; scale: 100% 0;}
  100% {opacity: 1; scale: 100% 100%;} 
}

@keyframes weaponfloat {
  0% {transform: translateY(5px);}
  100% {transform: translateY(-15px);} 
}

/* glitch */
@keyframes glitchleft{
	0% {transform: translateX(0);}
  50% {transform: translateX(-55px);}
  100% {transform: translateX(0);}
}
@keyframes glitchright{
	0% {transform: translateX(0);}
  50% {transform: translateX(75px);}
  100% {transform: translateX(0);}
}
.glitch::before{
  content: "";
  position: absolute;
  width: 75px;
  height: 5px;
  top: 0;
  left: -0;
  background-color: var(--black);
  z-index: -1;
}
.glitch::after{
  content: "";
  position: absolute;
  width: 80%;
  height: 3px;
  bottom: 0;
  right: -10px;
  background-color: var(--highlight);
  z-index: 2;
}
.btn_cta:hover .glitch::before{
  animation: glitchleft .5s ease;
  background-color: var(--highlight);
}
.btn_cta:hover .glitch::after{
  animation: glitchright .3s ease;
  animation-delay: 100ms;
}

/*---------------------------------------
   Normalize    
-----------------------------------------*/
body{
  position: relative;
  width: 100%;
  margin: 0px;
  padding: 0px;
  color: var(--white);
  font-size:  var(--txt_s);
  font-weight: 200;
  font-family: var(--mainfont);
  text-wrap: pretty;
  overflow-x: hidden !important;
  background-color: var(--active);
}

.title.darkbg span{
  color: var(--highlight);
}
.title span{
  color: var(--highlight2);
}
.mainwrapper{
  width: 1440px;
  max-width: 90vw;
}

.topgap{
  margin-top: 50px;
}

/*---------------------------------------
   Scroll Effect       
-----------------------------------------*/
.hidden{
  opacity: 0;
  transition: all 1s;
}

.show{
  opacity: 1;
}

.fade:not(.show) {
  opacity: 0;
  display: none;
}

::-webkit-scrollbar {
  width: 6px;
  height: 3.5px;
  display: none;
}
::-webkit-scrollbar-track {
  opacity: 0;
  background: rgba(226, 226, 226,.5);
}
::-webkit-scrollbar-thumb {
  background: var(--active);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--active);
}


/*---------------------------------------
   NAVBAR        
-----------------------------------------*/
.navigation{
  position: fixed;
  width: 100vw;
  display: flex;
  align-items: flex-start;
  padding: 0 15px;
  background-color: var(--black);
  overflow: visible;
}

.navigation::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  background: url(../img/navbg.png) center no-repeat;
  z-index: -1;
}

.navigation-container{
  padding: 0 5%;
  height: 100%;
  display: flex;
}

.navbar-brand{
  margin: 0;
}

.navbar-brand img{
  max-width: 160px;
  transition: all .5s linear;
  max-height: 45px;
  margin: 5px 0;
  filter: saturate(0) brightness(3);
}

.navwrapper{
  height: 65px;
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.navbar-nav{
  height: 100%;
}

.navigationitem{
  width: fit-content;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  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;
}

.hamburgerbtn:hover{
  min-width: 65px;
  height: 65px;
  border: none;
  color: var(--highlight);
}

.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: 500;
  font-size: 16px;
  letter-spacing: .05rem;
  gap: 6px;
  cursor: pointer;
  pointer-events: all;
}
.nav-link:focus{  
  color: var(--white);
}

.icon .nav-link{  
  min-width: 30px;
  min-height: 30px;
  max-height: 30px;
}
.icon .nav-link:hover{  
  background-color: var(--highlight);
}
.icon .nav-link{  
  background-color: var(--white);
  -webkit-mask-image: url(../img/icon/facebook.svg);
  mask-image: url(../img/icon/facebook.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon .nav-link.twitter{  
  -webkit-mask-image: url(../img/icon/twitter.svg);
  mask-image: url(../img/icon/twitter.svg);
}
.icon .nav-link.discord{  
  -webkit-mask-image: url(../img/icon/discord.svg);
  mask-image: url(../img/icon/discord.svg);
}


.navigationitem:hover .nav-link, .nav-link:hover, .nav-link.active{
  color: var(--white);
}

.nav-item.comingsoon:hover::before{
  opacity: 100%;
}

.navbar-nav:not(.icon) .navigationitem::after{
  content: "";
  position: absolute;
  bottom: 10px;
  width: 0;
  aspect-ratio: 222 / 34;
  background: url(../img/icon/btm.png) center no-repeat;
  background-size: contain;
  transition: width .3s ease;
  z-index: -1;
}

.navbar-nav:not(.icon) .navigationitem:hover::after, .navbar-nav:not(.icon) .navigationitem:has(.nav-link.active)::after {
  width: 120px;
  transition: width .3s ease;
}

#sidebar{
  z-index: 999;
  width: 10vw;
}
.sidebarwrapper{
  --n: 74px;
  position: relative;
  width: 100%;
  height: fit-content;
}
.sidebarwrapper .nav-link:hover, .sidebarwrapper .nav-link.active{
  color: var(--white) !important;
}
.sidebarwrapper .nav-link{
  position: relative;
  font-weight: 200;
  padding: 25px 10px;
  height: fit-content;
}

.sidebarwrapper .nav-link:before{
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: calc(var(--n) - 50px);
  background-image: var(--gradient);
  z-index: -1;
  transform-origin: left;
  transition: all .3s;
}
.sidebarwrapper .nav-link:hover::before, .sidebarwrapper .nav-link.active::before{
  content: "";
  width: 100%;
  transform-origin: left;
  transition: all .3s;
}
.sidebarwrapper .nav-link.active::after{
  content: "";
  position: absolute;
  bottom: 10px;
  width: 100px;
  aspect-ratio: 222 / 34;
  background: url(../img/icon/btm.png) center no-repeat;
  background-size: contain;
  transition: width .3s ease;
  z-index: -1;
}

.navbar-collapse.collapsing{
  height: 100vh !important;
  transition: height .3s ease;
}
.navbar-collapse.collapsing .navbar-nav{
  display: none;
}

.navbar-expand-xxl .navbar-nav .nav-link{
  padding: 0;
}
@media screen and (max-width: 1380px) {
  .sidebarwrapper{
    --n: 78px;
    align-items: flex-start !important;
  }
  .sidebarwrapper > .nav-link{
    text-align: start;
    text-wrap: wrap;
    line-height: 14px;
  }
}
@media screen and (max-width: 1000px) {
  #sidebar{ display: none;}
}
@media screen and (max-width: 1400px) {
  .navbar-brand img{
    padding-left: 10%;
  }
  .navigation-container{
    padding: 0;
  }
  .navwrapper{
    justify-content: flex-start;
    padding-top: 50px;
    width: 100vw;
    height: 100%;
    max-height: 100vh;
    /* height: calc(100vh - 50px); */
    flex-direction: column;
    overflow-y: scroll;
    padding-bottom: 100px;
  }
  .navbar-nav, .navigationitem{
    width: 100%;
    max-height: fit-content;
  }
  .navbar-nav.icon{
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
  .navigationitem{
    padding: 25px 0;
    max-height: fit-content;
  }
}


/*---------------------------------------
   GLOBAL
-----------------------------------------*/
.btn-close{
  background-color: var(--white);
  border-radius: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  z-index: 999;
  padding: 15px;
}
.btn-close:hover{
  background-color: var(--highlight2);
  transition: all .3s;
}
.modal-content{
  background-color: unset !important;
  height: 100%;
  border-radius: 0;
}
.modal-body{
  max-width: 100%;
  height: 100%;
  background: var(--black);
  background: url(../img/event/bg.jpg);
  background-size: cover;
  padding-top: 50px;
  height: 450px;
  max-height: 70vh !important;
}

.modal-body ul li, .accordion-body ul li{
  position: relative;
  padding-left: 20px;
}

.modal-body ul > li::before, .accordion-body ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: white;
}

.modal-body ul > li:has(ol)::before, .accordion-body ul > li:has(ol)::before  {
  content: none;
}

.modal-body ol > li{
  padding-left: 0;
  list-style: decimal;
}

.t_highlight, .t_highlight2{
  position: relative;
  height: fit-content;
  max-width: fit-content;
  background-color: var(--highlight) !important;
  color: var(--black);
  font-weight: 600 !important;
}

.t_highlight2{
  background-color: var(--highlight2) !important;
  color: var(--white);
}

.t_highlight.bdr::after, .t_highlight.bdr::before, .t_highlight .glitch::before{
  background-color: var(--highlight);
}

/*---------------------------------------
   KV
-----------------------------------------*/
#KV{
  position: relative;
  max-width: 100vw;
  height: fit-content;
  background: url(../img/bg-kv.png) bottom center no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kvwrapper{
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  background-image: linear-gradient(to top, black 10%, rgba(17, 17, 17, 0) 75%);
  /* backdrop-filter: blur(6px); */
  padding-bottom: 100px;
}

@media screen and (max-width: 600px) { 
  .kvwrapper {
    padding-bottom: 0;
  }
}

.cta{
  width: 100%;
  max-width: 100vw;
  text-align: center;
  justify-items: center;
  align-items: center;
  border-bottom: .5px solid rgba(255, 255, 255, 0.35);
  padding: 50px;
  padding-top: 200px;
}

.slogan_wrapper{
  margin-top: 20px;
  position: relative;
}

.slogan_wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -0;
  background: url(../img/sloganbg.jpg) center no-repeat;
  background-size: cover;
  mix-blend-mode: color-dodge;
  z-index: 1;
  mask-image: url(../img/slogan.png);
  mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.slogan span{
  font-weight: 900;
  font-size: var(--txt_slogan);
  line-height: calc(var(--txt_slogan) - 2px);
  text-wrap: nowrap;
  letter-spacing: 0;
  font-style: normal;
}
@keyframes sloganbg{
	from { background: var(--active);}
    to { background: var(--highlight2);}
}
.slogan {
  padding: 10px 10%;
  background: var(--active);
  font-size: 10px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: .5rem;
  gap: 0;
  animation: sloganbg 3s ease-in-out infinite alternate;
  background: url(../img/slogan.png) center no-repeat;
  background-size: cover;
  mask-image: url(../img/slogan.png);
  mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.date{
  letter-spacing: .25rem;
  text-transform: uppercase;
  font-weight: 900;
}

.carouselcontent_full .descript{
  max-width: 65vw;
}

@media screen and (max-width: 600px) { 
  .slogan span {
    display: block;
    text-wrap: pretty;
  }
}

.gamedescript{
  width: 1000px;
  text-align: center;
  max-width: 80vw;
}

.gamedescript h1{
  font-weight: 900;
  text-transform: uppercase;
}
.gamedescript span{
  color: var(--highlight);
  font-weight: 900;
}
.gamedescript h1 b{
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 100;
  padding-left: .25rem;
  letter-spacing: .25rem;
}

.cta *, .gamedescript * {
  width: fit-content;
  max-width: 90vw;
}

.sparksvideo{
  position: fixed;
  bottom: 0;
  width: 100%;
  min-width: 1500px;
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: screen;
}

.videowrapper{
  position: fixed;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-height: 850px;
}

.videowrapper::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/halftone.jpg);
  mix-blend-mode: multiply;
  opacity: .35;
  z-index: 10;
}
.bgvideo{
  min-height: 850px;
}

.btn_cta{
  position: relative;
  background-color: var(--black);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-indent: .35rem;
  letter-spacing: 0.15rem;
  padding: 15px 10px;
  pointer-events: all;
  cursor: pointer;
  margin: 0 19px;
}

.btn_cta:hover, .btn_cta:hover::after, .btn_cta:hover::before{
  color: #111111;
  background-color: var(--highlight);
}

.btn_cta p{
  font-weight: 600;
}

/*---------------------------------------
   ELEMENT
-----------------------------------------*/
.bdr{z-index: 2;}
.bdr::after, .bdr::before{
  content: "";
  width: 19px;
  height: 100%;
  position: absolute;
  background-color: var(--black);
  mask-image: url(../img/border.png);
  top: 0;
  right: -19px;
}
.bdr::before{
  right: unset;
  left: -19px;
  transform: scale(-1);
}
.title {
  position: absolute;
  top: 0;
  left: 100%;
  color: var(--black);
  transform-origin: top left;
  rotate: 90deg;
  z-index: 99;
  width: fit-content;
  height: fit-content;
  text-transform: unset;
}
.title.hori{
  position: unset;
  rotate: unset;
  padding-bottom: 0;
}
.title.sect{
  position: relative;
}
.titleline{
  width: 223px;
  aspect-ratio: 222 / 34;
  background: url(../img/icon/btm.png) center no-repeat;
  background-size: contain;
}
.title.darkbg{
  color: white;
}
.title h1{
  /* font-family: Impact; */
  text-transform: uppercase;
  font-weight: 900;
  font-size: 80px;
  line-height: 65px;
}

.title_small{
  --tlts: 40px;
  position: relative;
  width: 100%;
  font-size: var(--tlts);
  line-height: calc(var(--tlts) - 2px);
  font-weight: 800;
  text-transform: uppercase;
}
.title_small span{
  color: var(--highlight);
}
.title_small::before{
  content: "";
  position: absolute;
  transform-origin: left;
  width: 50px;
  aspect-ratio: 81/75;
  bottom: 5px;
  z-index: 10;
  background: url(../img/icon/arrow.png) center no-repeat;
  background-size: contain;
  left: -55px;
}

.title_small::after{
  content: "";
  position: absolute;
  transform-origin: left;
  width: 0;
  height: 3px;
  z-index: 1;
  background-color: var(--highlight2);
  left: -10px;
  bottom: -10px;
}
.title_small.show::after{
  width: 80%;
  transition: width .35s ease;
  transition-delay: 550ms;
}

.btn_prev, .btn_next{
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  width: 96px;
  aspect-ratio: 136/75;
  z-index: 15;
  scale: .75;
  background: url(../img/nxt_btn.png) center no-repeat;
  background-size: contain;
  opacity: 100;
  filter: saturate(0) brightness(100) opacity(0.35);
  transform-origin: top;
  transition: scale .35s ease;
}
.btn_prev {
  right: unset;
  left: 2%;
  transform: scaleX(-1) translateY(-50%);
}

@keyframes floatleft {
  0% {transform: scaleX(-1) translateX(20px);}
  100% {transform: scaleX(-1) translateX(0);}
}
@keyframes floatright {
  0% {transform: translateX(20px);}
  100% {transform: translateX(0);}
}

.event_btnwrapper .btn_prev{
  animation: floatleft .5s ease-out infinite alternate;
}
.event_btnwrapper .btn_next{
  animation: floatright .5s ease-out infinite alternate;
}

.btn_prev:hover, .btn_next:hover{
  filter: unset;
  scale: .85;
  right: 0;
  transition: scale .35s ease, right .35s ease;  
}
.btn_prev:hover{
  right: unset;
  left: 0;
  transition: scale .35s ease, left .35s ease;  
}

@media screen and (max-width: 1440px) {
  .title{
    top: unset;
    bottom: 0;
    left: 10px;
    right: unset;
    rotate: 0deg;
    transform-origin: top left;
    padding-bottom: 50px;
  }
  .title h1{
    font-size: 70px;
    line-height: 55px;
  }
}

@media screen and (max-width: 768px) {
  .title h1{
    font-size: 60px;
    line-height: 48px;
    text-align: start;
  }
  .title_small{
    --tlts: 30px;
  }
}

@media screen and (max-width: 610px) {
  .title{
    top: unset;
    rotate: 0deg;
  }
  .title h1{
    font-size: 40px;
    line-height: 30px;
  }
  .btn_prev, .btn_next{
    right: -15px;
    scale: .5;
  }
  .btn_prev {
    left: -15px;
  }
  .btn_prev:hover, .btn_next:hover{
    scale: .45;
    right: -20px;
    transition: scale .35s ease, right .35s ease;  
  }
  .btn_prev:hover{
    right: unset;
    left: -20px;
    transition: scale .35s ease, left .35s ease;  
  }
  .mainwrapper{
    justify-content: center;
  }
}

/*---------------------------------------
   EVENT
-----------------------------------------*/
#event{
  width: 100%;
  height: fit-content;
  position: relative;
  background-image: linear-gradient(to top, var(--highlight2), rgba(0,0,0,0)80%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  z-index: 4;
  scroll-margin-top: 100px;
}
#event::before{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, black 5%, rgba(0,0,0,0));
  pointer-events: none;
}
#event::after{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../img/event/bg.jpg) top center no-repeat;
  background-size: cover;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  z-index: -1;
}

.event_btnwrapper {
  width: 100%;
  max-width: 90vw;
  position: absolute;
  top: 95px;
  left: 15vw;
}

.event_imgwrapper{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.event_imgwrapper img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}
#event .carouselcontent_full{
  margin-top: 95px;
  padding-left: 15vw;
}
@media screen and (max-width: 1000px){
  #event .carouselcontent_full{
    padding: 0 var(--p_l);
  }
  .event_btnwrapper {
    left: var(--p_l);
    top: 75px;
  }
}

#event .carousel-item-next,#event .carousel-item-prev,#event .carousel-item.active{
  height: fit-content;
  min-height: 600px;
}
#event .btn_modal{
  max-width: fit-content;
}
#event .title{
  max-width: 500px;
}

@media screen and (min-width: 600px) and (max-width: 1250px) {
  .event_imgwrapper{
    right: -25vw;
  }
}
@media screen and (max-width: 768px) {
  .event_btnwrapper {
    justify-content: space-between;
  }
}

/*---------------------------------------
   WEAPON
-----------------------------------------*/
#feature, #download, #download_done, #news{
  position: relative;
  min-height: fit-content;
  max-height: 100vh;
  background: url(../img/bg_s2.png) bottom center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/*---------------------------------------
   FEATURE
-----------------------------------------*/
.gamemode_item{
  position: relative;
  max-width: 1000px;
  height: fit-content;
  padding: 20px 5px;
  column-gap: 25px;
  row-gap: 10px;
  overflow: visible;
}

.gamemode_item:nth-child(2){
  flex-direction: row-reverse;
} 

.imgwrapper{
  position: relative;
  width: 100%;
  max-height: 250px;
  aspect-ratio: 4 / 3.5;
  background: var(--black);
  border: 1px solid rgba(225, 225, 225,.5);
  overflow: hidden;
}
.imgwrapper::before{
  content: "";
  position: absolute;
  width: 110%;
  height: 50px;
  left: 50%;
  bottom: -50px;
  transform: rotate(2.5deg) translateX(-50%);
  background-image: linear-gradient(to left, var(--highlight), rgb(151, 255, 165));
  z-index: 10;
}
.gamemode_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gamemode::-webkit-scrollbar {
  display: none;
}

#feature::before{
  content:"";
  width: 100%;
  height: 50%;
  bottom: 0;
  position: absolute;
  z-index: 10;
  background-image: linear-gradient(to top, black, rgba(17, 17, 17, 0) 35%);
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  #feature::after{
    top: 50px;
    right: 10%;
  } 
}

@media screen and (max-width: 1080px) {
  #feature::after{
    right: 2%;
  } 
}

@media screen and (max-width: 768px) {
  #feature .mainwrapper{
    padding: 50px 0;
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 660px) {
  .gamemode_item{
    flex-wrap: wrap;
  }
}

/*---------------------------------------
   MEDIA
-----------------------------------------*/
#media{
  position: relative;
  min-height: fit-content;
  height: 760px;
  max-height: 100vh;
  background: url(../img/bg_s3.png) bottom center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.feature{
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 calc(15px + 150px);
}

#carouselFeature{
  position: relative;
  width: 920px;
  max-width: 90vw;
  clip-path: polygon(0% 0%, 98.1% 0%, 100% 3%, 100% 100%, 2% 100%, 0% 96.65%)
}

#carouselFeature::after{
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, var(--active) , transparent 5%);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  mix-blend-mode: color-burn;
  clip-path: polygon(0% 0%, 98.1% 0%, 100% 3%, 100% 100%, 2% 100%, 0% 96.65%)
}
#carouselFeature::before{
  content: "";
  position: absolute;
  background-image: linear-gradient(to left, var(--active) , transparent 5%);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  mix-blend-mode: color-burn;
  clip-path: polygon(0% 0%, 98.1% 0%, 100% 3%, 100% 100%, 2% 100%, 0% 96.65%)
}

#carouselFeature .carousel-inner{
  max-width: fit-content;
  aspect-ratio: 16 / 9;
  background: var(--black);
  display: flex;
  align-items: center;
}

#carouselFeature .carousel-item{
  height: 100%;
}
.carousel-item img{
  height: 100%;
}

#media::after {
  content: url(../img/feature/char_2.png);
  position: absolute;
  z-index: 11;
  bottom: -8px;
  left: 8%;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  #media{
    height: fit-content;
  }
  #media .mainwrapper{
    padding-bottom: 170px;
  }
  .feature{
    padding: 0;
  }
  #media::after{
    display: none;
  }
}

/*---------------------------------------
   FAQ
-----------------------------------------*/
#faq, #installer{
  position: relative;
  height: fit-content;
  min-height: 100vh;
  background: black;
  background: url(../img/event/bg.jpg) top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

#faq .mainwrapper{
  justify-content: center;
  margin-top: 65px;
}

#accordionFAQ{
  background: none;
}
#accordionFAQ *{
  border-radius: 0;
  color: var(--white);
}

#accordionFAQ .accordion-item{
  border: 1px solid var(--darkgrey);
  margin-bottom: 15px;
}

#accordionFAQ .accordion-button, #accordionFAQ .accordion-item:hover .accordion-button{
  box-shadow: none;
  background: var(--highlight2);
  text-transform: uppercase;
}
#accordionFAQ .accordion-button.collapsed{
  background: var(--black);
}
.accordion-button::after {
  filter: brightness(100);
}


#accordionFAQ .accordion-body{
  font-size: var(--txt_body);
  padding: var(--p_s) var(--p_l);
  background-image: linear-gradient(to bottom, rgb(15, 15, 15) 20%, var(--black));
}

#accordionFAQ .accordion-body ol > li{
  list-style: decimal;
}


/*---------------------------------------
   DOWNLOAD
-----------------------------------------*/
.video_feature {
  position: relative;
  background: var(--black);
  width: 100%;
  max-width: 850px;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.video_feature::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 3%;
  background-color: black;
  mask-image: url(../img/dlbarbg.png);
  mask-size: cover;
  top: -3%;
}
.video_feature::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 3%;
  background-color: black;
  mask-image: url(../img/dlbarbg.png);
  mask-size: cover;
  transform: scaleY(-1);
  bottom: -3%;
}


.video_feature span{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--black);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.video_feature span:hover{
  background: rgba(0,0,0,.5);
  transition: .3s;
}

.video_feature iframe{
  width: 100%;
  height: 100%;
  background: var(--black);
}

#gameinfoTable *{
  background: none;
}

#downloadbar.hidden{
  position: sticky;
  bottom: 0;
  z-index: 998;
  margin-top: -25px;
  background-color: var(--black);
  transform: translateY(100%);
}

#downloadbar.show{
  opacity: 1;
  transform: translateY(0);
}

#downloadbar.hide{
  opacity: 0;
  transform: translateY(100%);
  transition: all .35s;
}

.dowloadbarwrapper{
  position: relative;
  width: 100vw;
  height: fit-content;
  min-height: 135px;
  overflow: hidden;
}
#downloadbar, .dowloadbarwrapper, .dowloadbarwrapper::before{
  mask-image: url(../img/dlbarbg.png);
  mask-position: bottom;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.dowloadbarwrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/sloganbg2.jpg) center no-repeat;
  background-size: cover;
  mix-blend-mode: overlay;
  z-index: 0;
  opacity: .75;
}
.marquee {
  height: 100%;
  position: absolute;
  overflow: hidden;
  mix-blend-mode: color-dodge;
  opacity: 5%;
}
.marquee-content {
  display: flex;
  animation: marqueescroll 50s linear infinite forwards;
}
.marquee-content img{
  height: 100%;
  margin: 20px;
}

@keyframes marqueescroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 320px));
  }
}

.btn_dl{
  margin:0 19px;
}

.btn_dl p{
  --dl_f: 35px;
  margin: 0; 
  text-transform: uppercase; 
  font-size: var(--dl_f); 
  line-height: var(--dl_f); 
  letter-spacing:0; 
  font-weight: 900;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .btn_dl p{--dl_f: 25px;}
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  }
  to {
    filter: drop-shadow(0 0 10px  rgba(255, 255, 255, 0.5));
  }
}

.btn_dl.btmbanner, .glow{
  animation: glow .7s linear infinite alternate;
}
.btn_dl.btmbanner:hover, .glow:hover{
  filter: drop-shadow(0 0 10px var(--highlight));
  animation: unset;
  transition: box-shadow .3s;
}
.btmbanner{
  gap: 10px 50px;
}
.btmbanner img{
  width: fit-content;
  max-width: min(100%, 385px);
  height: fit-content;
}

@media screen and (max-width: 580px) {
  .mainwrapper:has(.btmbanner){
    flex-wrap: wrap;
  }
  .btmbanner{
    justify-content: center;
  }
  .btmbanner img{
    max-height: 5vh;
  }
}

/*---------------------------------------
   DOWNLOAD DONE
-----------------------------------------*/
#download_done, #installer{
  height: 100vh;
  overflow: hidden;
}
#installer::before{
  content: "";
  position: absolute;
  width: 100vw;
  height: 30vh;
  bottom: -0;
  background-image: linear-gradient( to top , var(--black), rgba(0,0,0,0));
  mix-blend-mode: multiply;
  z-index: 1;
}
#download_done .char img{
  position: absolute;
  width: 100%;
  min-width: 930px;
  max-width: fit-content;
  max-height: fit-content;
  bottom: 0;
  left: -10vw;
}

#installer .installer_char img{
  position: absolute;
  width: 100%;
  max-width: fit-content;
  height: fit-content;
  max-height: 90vh;
  bottom: 0;
  right: 20%; 
}

#download_done .mainwrapper{
  justify-content: center;
}

#installer .mainwrapper{
  justify-content: end;
  z-index: 50;
  padding-bottom: 10vh;
}

.dl_link{
  letter-spacing: unset;
  margin: 0 19px;
}

@media screen and (max-width: 1600px) {
  #download_done .char img{
    left: -30vw;
  }
}
@media screen and (max-width: 1024px) {
  #download_done .mainwrapper{
    justify-content: flex-start;
    padding-top: 10vh;
  }
  #download_done .char img {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  #download_done .mainwrapper{
    align-items: flex-start;
  }  
  #download_done .char img {
    left: 50%;
    transform: translateX(-50%);
  }
  #install{
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  #installer .installer_char img{
    right: 0; 
  }
  #installer .t_ctr{
    text-align: start;
  }
}
@media screen and (max-width: 500px) {
  #installer .installer_char img{
    display: none; 
  }
  #installer .mainwrapper{
    justify-content: center;
  }  
}

/*---------------------------------------
   News
-----------------------------------------*/
.news_item{
  position: relative;
  width: 100%;
  max-width: 350px;
  height: auto;

  overflow: hidden;
}

/* .news_item::before{
  content: "";
  position: absolute;
  width: 110%;
  height: 50px;
  left: 50%;
  bottom: -50px;
  transform: rotate(2.5deg) translateX(-50%);
  background-image: linear-gradient(to left, var(--highlight), rgb(151, 255, 165));
  z-index: 10;
} */

.news_imgwrapper{
  display: flex;
  width: 100%;
  aspect-ratio: 4/2.5;
  max-height: unset;
  overflow: hidden;
  background: none !important;
}
.news_imgwrapper:hover{
 border: 3px solid var(--highlight);
}
.news_imgwrapper::after{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient( to top ,var(--black), rgba(0,0,0,0));
  mix-blend-mode: multiply;
}
.news_imgwrapper img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.news_title{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding-bottom: 2px;
}
.news_tag{
  width: 100%;
  left: -5px;
  padding: 0 var(--p_s);
  position: absolute;
  top: -1px;
  mask-image: url(../img/slogan.png);
  mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  z-index: 10;
}

.news_date{
  width: fit-content;
  right: 0;
  padding: 0 var(--p_s);
  position: absolute;
  bottom: 15px;
  mask-repeat: no-repeat;
  z-index: 10;
  font-size: calc(var(--txt_l) - 5px);
  font-style: italic;
}

.news_itemwrapper{
  width: 1080px;;
  max-width: 100%;
}

.page_link{
  width: 35px;
  max-width: 10vw;
  aspect-ratio: 1/1;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.page_link:hover, .page_link.active{
  position: relative;
  background-color: var(--highlight) !important;
  color: var(--black);
  font-weight: 600 !important;
  mask-image: url(../img/slogan.png);
  mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.page_link.disabled{
  color: var(--grey);
  opacity: .75;
  pointer-events: none;
}