.elementor-8 .elementor-element.elementor-element-b0df0ee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* remove old hiding rule */

/* 1) Base reset + ensure no scroll */
html, body {
  margin: 0; padding: 0;
  width: 100vw; height: 100vh;
  overflow: hidden;
}

/* 2) Overlay container */
.kinetic-wrap {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #000;
  z-index: 9999;
  pointer-events: none; /* clicks pass through */
}

/* 3) Rows of words */
.kinetic-line {
  display: flex;
  white-space: nowrap;
  line-height: 24px;
}

/* 4) Individual words */
.kinetic-line span {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  color: white;
  opacity: 1;
  animation: fade 4s ease-in-out infinite;
  will-change: opacity;
}

/* 5) Fade keyframes */
@keyframes fade {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}/* End custom CSS */