#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  overflow: hidden;
  display: none;
}

#intro-logo-container {
  position: relative;
  z-index: 10002;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  perspective: 1000px;
}

.logo-flip-container {
  width: 100%;
  max-width: 450px;
  height: inherit;
  position: relative;
  transform-style: preserve-3d;
}

.logo-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.logo-front {
  z-index: 2;
}

.logo-back {
  transform: rotateY(180deg);
}

@media (max-width: 767.98px) {
  .logo-face img {
    width: 60%;
    height: auto;
    object-fit: contain;
  }
}

@media (min-width: 768px) {
  .logo-face img {
    width: 90%;
    height: auto;
    object-fit: contain;
  }
}

#intro-pixel-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
}

.intro-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

