body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Trajan Pro';
}

.landing {
  position: relative;
  width: 100vh;
  height: 100vh;
  overflow: hidden;
  rotate: -90deg;
  z-index: 1;
  top: -19px;
}

/* Haze layer */
.haze {
  position: absolute;
  bottom: -120%;
  left: 0;
  width: 100%;
  height: 200%;
  background: url(../images/sand2.webp) no-repeat center center;
  background-size: cover;
  animation: hazeRise 8s forwards ease-in-out;
  animation-delay: 0s;
  z-index: 5;
  opacity: 0;
}

@keyframes hazeRise {
  0% {
    bottom: -120%;
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    bottom: 100%;
    opacity: 0.2;
  }
}


.haze2 {
  position: absolute;
  bottom: -125%;
  left: 0;
  width: 100%;
  height: 200%;
  background: url(../images/sand2.webp) no-repeat center center;
  background-size: cover;
  animation: hazeRise2 9s forwards ease-in-out;
  animation-delay: 0.5s;
  z-index: 5;
  opacity: 0;
}

@keyframes hazeRise2 {
  0% {
    bottom: -125%;
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    bottom: 100%;
    opacity: 0.2;
  }

}


.haze3 {
  position: absolute;
  bottom: -120%;
  left: 0;
  width: 100%;
  height: 200%;
  background: url(../images/sand2.webp) no-repeat center center;
  background-size: cover;
  animation: hazeRise3 6.4s forwards ease-in-out;
  animation-delay: 1s;
  z-index: 5;
  opacity: 0;
}

@keyframes hazeRise3 {
  0% {
    bottom: -120%;
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    bottom: 100%;
    opacity: 0.2;
  }
}

canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}



/* Enter button */
.enter-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  background: url(../images/enter_btn.png) no-repeat center center;
  background-size: contain;
  display: block;
  width: 200px;
  height: 66px;
  border: none;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 10;
}

.enter-btn.show {
  opacity: 1;
}


#logo_onvideo { 
  display: none;
  width: 130px;
  transition: opacity 1s ease;
  margin: 0 auto;
  position: absolute;
  z-index: 9;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}



.play_btn {
  background: url(../images/playnow_n1.webp) no-repeat center center;
  background-size: contain;
  display: none;
  width: 200px;
  height: 50px;
  border: none;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 1s ease;
  margin: 0 auto;
  position: absolute;
  z-index: 9;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}


.play_btn:active {
  zoom: 0.9;
}

.play_btn:focus {
  outline: none;
  /* or outline: 0; */
  box-shadow: none;
  /* for frameworks like Bootstrap */
}

/* Enter button */
.agree_continue {
  font-weight: bold;
  background: url(../images/agree_continue_btn.webp) no-repeat center center;
  background-size: contain;
  display: block;
  width: 280px;
  height: 80px;
  border: none;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 1s ease;
  margin: 0 auto;
}


/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #000000, #4d3503);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#preloader .loadingtext {
  color: #fff;
  padding: 10px;
  text-align: center;
  position: relative;
  font-family: Arial, sans-serif !important;

}

#preloader .spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #9d692f;
  border-top: 6px solid #d39e4e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 20px #9d692f;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Hide content until preloader is gone */
.hidden {
  display: none;
}

/* Example background animation (starts after preload) */
body.loaded {
  /* background: radial-gradient(circle at center, #0f0f2d, #000); */
  /* animation: cosmicFade 5s ease forwards; */
}

@keyframes cosmicFade {
  from {
    background-color: #000;
  }

  to {
    background-color: #0f0f2d;
  }
}


.desktop-message {
  display: block;
  text-align: center;
  color: #fff;
  padding: 50px;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  height: 100vh;
}

@media (max-width: 768px) {
  .desktop-message {
    display: none;
  }
}

/* Hide the entire app on desktop */
.mobile-only {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}



#playBtn,
#startBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #000;
  display: block;
  width: 250px;
  height: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 1s ease;
  z-index: 11;

  text-indent: -999px;
  overflow: hidden;
  background: url(../images/1st_btn.webp) no-repeat center center;
  background-size: contain;
  transition: all 0.2s ease;
}

#playBtn:active,
#startBtn:active {
  zoom: 0.9;
}


#entry_screen {
  background: url(../images/music_icon.webp) no-repeat center 30% #000000;
  background-size: 100px;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: 9;
}

#entry_screen.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease-out;
}


.fade-out2 {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 2s ease-out !important;
}





/* Video container – full viewport */
.video-bg {
  position: fixed;
  /* or absolute if inside a section */
  inset: 0;
  /* top/right/bottom/left = 0 */
  overflow: hidden;
  /* z-index: -1; */
  /* behind your content */
  opacity: 0;
}

.video-bg.videovisivle {
  opacity: 1;
  transition: opacity 2s ease-in;
}

/* The video itself */
.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.video-bg video.loaded {
  opacity: 1;
}



.EventRules {
  background: rgb(0 0 0 / 10%);
  background-size: cover;
  padding: 30px;
  position: relative;
  height: 100vh;
  z-index: 11;
  color: #fff;
  font-family: 'Alegreya Sans';
}

.EventRules h2 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #ffe854;
  text-transform: uppercase;
  letter-spacing: -0.4px;
  font-family: 'Trajan Pro';
  font-weight: bold;
  font-style: normal;
}

.EventRules h3 {
  margin-bottom: 2px;
}

.EventRules p {
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 12px 0;
}

.EventRules .er_div h2 {
  margin-bottom: -10px;
}

.EventRules .tnc_div h2 {
  margin-bottom:5px;
  margin-top: 20px;
}




/* Video container – full viewport */
.sand_video_bg {
  position: fixed;
  /* or absolute if inside a section */
  inset: 0;
  /* top/right/bottom/left = 0 */
  overflow: hidden;
  /* z-index: -1; */
  /* behind your content */
  opacity: 1;

}


/* The video itself */
.sand_video_bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}


.welcome_landing {
  padding: 30px;
  text-align: center;
}

.welcome_landing .wwm_logo img {
  width: 175px;
}

.welcome_landing .landing_msg {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 24px;
  font-family: 'Alegreya Sans';
  font-weight: bold;
  font-style: normal;
}


#EventRules {
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 9;
}

#EventRules.show {
  opacity: 1;
}


#preloader2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #454545, #18232d);
  display: block;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#preloader2 .loadingtext {
  display: block;
  color: #fff;
  padding: 10px;
  text-align: center;
  position: relative;
  top: 41%;
  font-family: Arial, sans-serif !important;
}

#preloader2 .spinner {
  top: 40%;
  position: relative;
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border: 6px solid #d5ae5a;
  border-top: 6px solid #f7f4c2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 20px #f7f4c2;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#preloader2.fade-out {
  opacity: 0;
  pointer-events: none;
}


.blurp {
  position: absolute;
  margin-top: -89px;
  text-align: center;
  padding: 15px 15px;
  width: 74%;
  rotate: -3deg;
  top: 10%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%) skew(-20deg);
  background: rgb(8 8 8 / 28%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(10px);
  border: 4px solid rgba(255, 255, 255, 0.3);
  color: #ffd06b;
  font-size: 16px;
  font-weight: bold;
}


/*****************Start***********************
**********Intro Video CSS *******************/










#videoContainer {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black;
  /* behind everything */
  overflow: hidden;
}

#videoContainer video#introVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  overflow: hidden;
}



/* Buttons */
#enterBtn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 30px;
  font-size: 1.5em;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  border-radius: 8px;
  z-index: 1000;
}



#enterBtn {
  bottom: 20%;
  display: none;
}

/***************END***********************
**********Intro Video CSS *******************/