body {
  background: #000;
  color: #aaa;
  font-family: 'Home Bargains Calculator', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.text-area {
  position: relative;
  overflow: hidden;
}

.nav a[href="/about.html"] {
  color: #f00 !important;
  position: relative;
}
.nav a[href="/about.html"]::after {
  content: "•";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  color: #f00;
  font-size: 12px;
}
.nav a[href="/"] {
  color: #888;
}
.nav a[href="/"]::after {
  content: none;
}

.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.about-text {
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
  color: #ccc;
}
.about-text p {
  margin: 0 0 18px 0;
  position: relative;
  text-shadow:
    -1px 0 rgba(255, 0, 0, 0.5),
    1px 0 rgba(0, 255, 255, 0.5),
    0 0 2px white,
    10px 15px 1.8px rgba(255, 255, 255, 0.4);
  z-index: 1;
}
.about-text p::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0px,
    rgba(0, 0, 0, 0.2) 2px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 2;
}

.no-shadow {
  text-shadow: none !important;
  background: none !important;
  position: relative;
  z-index: 10;
}
.no-shadow::after {
  content: none !important;
}

.first-word {
  position: relative;
  display: inline-block;
  color: inherit;
}
.entitled-behind {
  position: absolute;
  top: 0;
  left: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: rgba(255, 0, 0, 0.7);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  text-shadow: 0 0 2px rgba(255,0,0,0.3);
  animation: flicker 0.15s infinite steps(1);
}

.debris {
  position: absolute;
  font-family: 'Home Bargains Calculator', monospace;
  color: rgba(180, 180, 180, 0.7);
  font-size: 13px;
  line-height: 1.6;
  pointer-events: none;
  white-space: normal;
  max-width: 400px;
  animation: flicker 0.15s infinite steps(1);
}
.debris1 { top: 20px; left: 30px; }
.debris2 { top: 80px; left: 150px; }
.debris3 {
  top: 140px;
  left: 40px;
  color: rgba(0, 255, 0, 0.7) !important;
}
.debris4 { top: 200px; left: 200px; }
.debris5 {
  top: 260px;
  left: 80px;
  color: rgba(255, 0, 0, 0.7);
}

.eye-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eye-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0;
  max-width: 100%;
  overflow: hidden;
}

.ascii-trio8 {
  font-family: monospace;
  white-space: pre;
  font-size: 7px;
  line-height: 1;
  color: #fff;
  opacity: 0.05;
  background: transparent;
  padding: 0;
  border: none;
  display: block;
  position: relative;
  left: -240px; 
  z-index: 1;
}

.about-eye {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  image-rendering: pixelated;
}
.about-eye1 {
  top: 5%;
  right: -10%;
  width: 200px;
}
.about-eye2 {
  bottom: 10%;
  left: -5%;
  width: 60px;
  transform: rotate(5deg);
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #333;
}
::-webkit-scrollbar-thumb:hover {
  background: #f00;
}

@media screen and (max-width: 600px) {
  body {
    padding: 10px;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .debris1 { top: 10px; left: 5px; }
  .debris2 { top: 70px; left: 40px; }
  .debris3 { top: 130px; left: 10px; }
  .debris4 { top: 190px; left: 30px; }
  .debris5 { top: 250px; left: 15px; }
  .about-eye1 { width: 150px; right: -5%; }
  .about-eye2 { width: 50px; }
  .ascii-trio8 {
    font-size: 4px;
    left: -20px;
  }
}