html, body {
  overflow-x: hidden;
  width: 100%;
}

.common-section {
  position: relative;
  width: 100vw !important;
  max-width: 100vw;
  height: 100vh !important;
  background-color: #000;
  z-index: 10;
  overflow: hidden !important;
  margin: 0;
  padding: 0;
}

.common-section.is-locked {
  display: none;
}

/* Layer 1: Background Generic Site */
.common-bad-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  will-change: filter;
}

.bad-page-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Layer 2: Darkening Overlay */
.common-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
}

/* Layer 3: Massive Impact Text Wrapper */
.common-text-container {
  position: relative; /* As requested: NOT fixed */
  width: 100%;
  height: 100vh;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.text-track {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

.massive-impact-text {
  font-family: var(--font-display, "Inter", sans-serif);
  font-weight: 900;
  font-size: 80vh; /* Massive scale */
  line-height: 1;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 0;
  padding: 0;
}

.char {
  display: inline-block;
}
