@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght=700;900&display=swap');

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  font-family: 'Montserrat', sans-serif;
}

/* WEBGL CANVAS CONTAINER */
#canvas-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* MAIN WRAPPER */
.intro-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
}

/* EACH SCREEN PANEL */
.intro-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform;
}

/* LAYER HIERARCHY STACKING */
.blur-screen { z-index: 1; }
.ready-screen { z-index: 2; }
.good-screen { z-index: 3; }
.strike-screen { z-index: 4; }
.flash-screen { z-index: 10; position: absolute; inset: 0; background: #ffffff; opacity: 0; pointer-events: none; }
.logo-screen { z-index: 6; opacity: 0; }

/* INITIAL OFFSETS FOR SLIDE REVEAL EFFECT */
.ready-screen, .good-screen, .strike-screen { transform: translateY(100%); }

/* CRISP NATIVE TYPOGRAPHY CONFIGURATION (Strictly isolated from WebGL processing distortions) */
.intro-text {
  position: relative;
  color: #ffffff;
  font-size: 48pt;
  font-weight: 900; /* Montserrat Black */
  line-height: 1.1;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* STRIKE ANIMATION LAYER PROPERTIES */
.high-wrap { position: relative; display: inline-block; }
.strike-word { position: relative; z-index: 2; }
.strike-line {
  position: absolute;
  left: 0;
  top: 55%;
  width: 0%;
  height: 8px;
  background: #72BF44;
  transform: translateY(-50%);
  z-index: 3;
}
.hy-word { position: absolute; opacity: 0; transform: translateY(-2px); white-space: nowrap; }
.stays-word { display: inline-block; }

/* LOGO POSITION COMPOSITION */
.logo-composition {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.logo-wrap { position: relative; display: inline-block; }
.main-logo { width: 250px; display: block; }