* { box-sizing: border-box; }

body {
  margin: 0;
  background: #1a1a1a;
  color: #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
  pointer-events: none;
}

#gibberish {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.flavor {
  color: #666;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.hidden {
  display: none !important;
}

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