@font-face {
  font-family: 'Myriad Pro';
  src: url('./fonts/MyriadPro-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000000;
}

#mk-logo {
  position: fixed;
  top: 5%;
  left: 0%;
  width: 20%;
  z-index: 100;
  pointer-events: none;
}

@media (max-width: 2200px) {
  #mk-logo {
    top: auto !important;
    bottom: 10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 66% !important;
    opacity: 0;
    transition: opacity 2s ease-in;
  }
  #mk-logo.visible {
    opacity: 1;
  }
}

#loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: opacity 0.5s ease-out;
}

#loading-container.hidden {
  opacity: 0;
  pointer-events: none;
}

#scene-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 1000;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}

#scene-overlay.hidden {
  opacity: 0;
}

#loading-bar-bg {
  width: 300px;
  height: 4px;
  background-color: #1c3e6b;
  border-radius: 2px;
  overflow: hidden;
}

#loading-bar {
  width: 0%;
  height: 100%;
  background: #f89839;
  border-radius: 2px;
  transition: width 0.3s ease-out;
}

#more-to-come {
  position: fixed;
  font-family: 'Myriad Pro', sans-serif;
  font-weight: bold;
  font-size: 1.02vw;
  color: #ffffff;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-align: center;
  z-index: 101;
  pointer-events: none;
  opacity: 0;
  transition: opacity 4s ease-in;
}

#more-to-come.visible {
  opacity: 1;
}

@media (max-width: 2200px) {
  #more-to-come {
    font-size: 3.06vw;
  }
}
