/* Body base style */
body {
  background-color: #000;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Courier New', monospace;
  color: #33ff33;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* CRT Scanline Effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.2) 3px
  );
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 9999;
  animation: crt_flicker 0.15s infinite;
}

@keyframes crt_flicker {
  0%, 100% {
    background-position: 0 0;
    opacity: 0.95;
  }
  50% {
    background-position: 0 1px;
    opacity: 1;
  }
}

/* Ellipsis Glow */
.coming-soon {
  font-size: 60px;
  text-shadow: 0 0 15px #33ff33, 0 0 10px #33ff33, 0 0 20px #009900;
  white-space: nowrap;
  z-index: 1;
  position: relative;
}

.ellipsis::after {
  content: '\00A0\00A0\00A0'; /* 3 blank spaces */
  animation: dotty 5s steps(3, end) infinite;
}

@keyframes dotty {
  0%   { content: "\00A0\00A0\00A0"; }
  10%  { content: ".\00A0\00A0"; }
  25%  { content: "..\00A0"; }
  45%  { content: "..."; }
  100% { content: "..."; }
}
