:root {
  color-scheme: light only;
  --black: #111111;
  --darkgrey: #232323;
  --active: #ffecad;
  --highlight: #b0b8e9;
  --darkblue: #1b1d50;
  --white: #eeeeee;
  --font: "Noto Serif SC", serif;
  --btn_dl: 100px;
  --txt_body: 16px;
}


/*---------------------------------------
   Animation
-----------------------------------------*/
@keyframes zoom{
  from {scale: 1}
    to {scale: 0.985}
}


/*---------------------------------------
   Scroll Effect       
-----------------------------------------*/
html{
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

section:not(#footer) {
  height: 100vh !important;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

@media screen and (max-width: 1200px) {
  html{
    scroll-snap-type: unset;
    scroll-behavior: smooth;
  }
  section:not(#footer) {
    scroll-snap-align: unset;
  }
  section:not(#footer):not(#KV){
    height:fit-content !important;
    min-height: unset !important;
  }
}

body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

/* Remove animations or transitions on padding */
[style*="padding-right"] {
  transition: none !important;
}
::-webkit-scrollbar-thumb {
  background:  #7077a7;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--active);
}
::-webkit-scrollbar {
  background: var(--darkgrey);
  width: 3px;
}
#subtabBar::-webkit-scrollbar {
  display: none;
}

/*---------------------------------------
   COMMON      
-----------------------------------------*/
::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(--white);
  scroll-behavior: smooth;
}

a{
  pointer-events: all;
}

p{
  margin: 0;
}


h1{
  color: var(--active);
}
h3{
  font-size: 18px;
  margin: 0;
}

.smallgap{
  gap: 5px;
}

.note{
  font-size: 12px;
  color: #ff5151;
  font-style: italic;
}

/*---------------------------------------
   NAVBAR        
-----------------------------------------*/
.navigation{
  width: 100vw;
  display: flex;
  align-items: flex-start;
  padding: 0 !important;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navigation-container{
  padding: 0 2%;
  height: 100px;
  display: flex;
  gap: 10px;
  position: relative;
}

.navbar-brand{
  margin: 0;
  z-index: 99;
}

.navbar-brand img{
  max-width: 160px;
  transition: all .5s linear;
  margin: 5px 0;
}

.nav_pre-register{
  position: absolute;
  top: 0;
  right: 2%;
  width: 15%;
  min-width: 200px;
  aspect-ratio: 351/333;
  background: url(../img/btn_preregispg.png) top right no-repeat;
  background-size: contain;
}
.nav_pre-register:hover{
  filter: brightness(1.2);
}

@media screen and (max-width: 1199px) {
  .navbar-brand img{
    padding-left: 10%;
    margin-top: 15px;
    height: 55px;
  }
  .navigation-container{
    padding: 0;
    height: fit-content;
  }
}

/*---------------------------------------
   DOWNLOAD
-----------------------------------------*/
#download{
  position: relative;
  min-height: fit-content;
  background: url(../img/bg2.png) bottom center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.btn_download{
  margin-top: -25px;
  width: 300px;
  max-width: 80%;
  aspect-ratio: 716/215;
  background: url(../img/btn_download.png) center no-repeat;
  background-size: contain;
  animation: zoom .35s infinite ease alternate;
}
.btn_download:hover {
  background: url(../img/btn_download-hover.png) center no-repeat;
  background-size: contain;
}

.video_feature ,.img_thumbnail{
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
}

.img_thumbnail{
  position: absolute;
  padding: 3.5%;
  pointer-events: none;
}

.img_thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video_feature::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/videobg.png) center no-repeat;
  background-size: contain;
  z-index: 10;
}

.video_feature iframe{
  width: 100%;
  height: 100%;
  padding: 3.5%;
}

#gameinfoTable *{
  background: none;
  font-size: 18px;
}

.btn_cta{
  padding: 10px var(--p_l);
  border: 1px solid var(--active);
}
.btn_cta:hover{
  background: var(--active);
}
.btn_cta p{
  color: var(--active);
  font-weight: 900;
}
.btn_cta:hover p{
  color: var(--black);
}

section.fullscreen, .fullscreen {
  min-width: 100vw !important;
  min-height: 100vh !important;
}