/* ========== BASIC ELEMENTS ========== */
.square {
  width: 90px;
  height: 90px;
  border: 2px solid #fff;
  box-sizing: border-box;
  float: left;
  mix-blend-mode: overlay;
  background: rgba(255, 255, 255, 0%);
}

.intersection {
  width: 10px;
  height: 10px;
  position: absolute;
  z-index: 10;
  background: transparent;
  mix-blend-mode: overlay;
  border: 1px solid #fff;
  margin-left: -1px;
  margin-top: -1px;
}

.diagonal {
  position: absolute;
  width: 1px;
  background-color: #fff;
  transform-origin: top left;
}

.hide {
  display: block;
  opacity: 0;
}

/* ========== STATUS & HIGHLIGHTS ========== */
.highlight.red {
  color: red;
  font-weight: 900;
}

.footer {
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ========== AUDIO CONTROLS ========== */
audio {
  margin-top: 30px;
  opacity: 0.5;
  scale: 0.8;
  transform-origin: left top;
  border-radius: 51px;
  transition: all 1s ease;
}

audio:hover {
  opacity: 1;
  scale: 1;
}

audio#decade {
  margin-top: 30px;
}

.hide-volume::-webkit-media-controls-volume-slider,
.hide-volume::-webkit-media-controls-mute-button,
.hide-volume::-webkit-media-controls-volume-control {
  display: none !important;
}

.hide-volume::-webkit-media-controls-enclosure {
  width: 100%;
  background-color: white;
  border-radius: 1px !important;
  border: 1px solid white;
  overflow: hidden;
  color: white;
}

/* ========== PRELOADER / FINAL TEXT ========== */
.preloader-line {
  width: 100%;
  height: 1px;
  background: white;
  transform-origin: left center;
  transform: scaleX(0);
  margin-bottom: 10px;
}

.preloader-percent {
  color: white;
  font-size: 14px;
  text-align: right;
  margin-top: 4px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.final-reveal {
  letter-spacing: 15px;
  text-transform: uppercase;
  font-family: Womby, sans-serif;
  font-size: 16px !important;
  line-height: 1em;
  transition: all 0.7s;
  position: absolute;
  top: 46%;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ========== SITE HEADER ELEMENTS ========== */
.site-name,
.site-tagline,
.navigation-w,
.experience-w {
  opacity: 0;
}

.site-name,
.site-tagline {
  transform: translateY(-50px);
}

/* ========== NOISE / FLICKER EFFECT ========== */
.noise {
  animation: flicker 0.2s infinite;
}

@keyframes flicker {
  0% { opacity: 0.20; }
  10% { opacity: 0.10; }
  20% { opacity: 0.25; }
  30% { opacity: 0.08; }
  40% { opacity: 0.20; }
  50% { opacity: 0.12; }
  60% { opacity: 0.25; }
  70% { opacity: 0.15; }
  80% { opacity: 0.20; }
  90% { opacity: 0.10; }
  100% { opacity: 0.20; }
}

/* ========== TYPEWRITER PXR ========== */
.pxr {
  white-space: nowrap;
  display: inline-block;
  min-width: 20ch;
}

.pxr::after {
  content: "|";
  animation: blink 1s steps(1) infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ========== SYMBOL LAYER ========== */
#symbol-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.symbol,
.noise-text {
  position: absolute;
  font-family: monospace;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  animation: blink 1s steps(1) infinite;
  transition: opacity 0.2s;
}

.noise-text {
  font-size: 8px;
  line-height: 1.2;
  max-width: 100px;
  white-space: pre-line;
}

.floating-symbol,
.tiny-text {
  font-family: monospace;
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  z-index: 1000;
  animation: blink 1s steps(1) infinite alternate;
}

/* ========== GRID LAYOUT EXAMPLE ========== */
.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 15px 10px;
  text-align: center;
  font-family: 'Ostrich Rounded', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 7px;
  line-height: 1em;
  border: 1px solid #ffffff3d;
  background-color: transparent;
}

/* ========== UI LAYERS ========== */
.topBlur,
.bottomBlur,
.layerBlur {
  backdrop-filter: blur(10px);
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 99999999;
}

.topBlur {
  top: 0;
  height: 85px;
}

.bottomBlur {
  bottom: 0;
  height: 85px;
}

.layerBlur {
  position: absolute;
  bottom: -20px;
  height: 35px;
  z-index: 999999;
}

.border {
  position: fixed;
  top: 85px;
  left: 85px;
  right: 85px;
  bottom: 85px;
  border: 1px solid white;
  z-index: 99999999;
}

/* ========== THEME UI ========== */
.exp-option-sel {
  border: 1px solid transparent;
  padding: 2px 5px 2px 10px;
}

.exp-option-sel.active {
  border-color: white;
}
.rain {
   width: 100%;
   height: 100%;
   position: fixed;
   z-index: 99999999999;
   overflow: hidden;
   top: 0;
  left: 0;
}
.rain video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
      opacity: .2;
}