* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Courier New', monospace;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 40px 20px;
}

.status {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 8px;
  color: #ffff00;
  text-shadow: 0 0 30px rgba(255, 255, 0, 0.5);
  animation: glitch 3s infinite;
  position: relative;
}

.status::before,
.status::after {
  content: 'COMING SOON';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.status::before {
  color: #ff00ff;
  animation: glitch-1 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.status::after {
  color: #00ffff;
  animation: glitch-2 2s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-5px, 0); }
  94% { transform: translate(5px, 0); }
  96% { transform: translate(-3px, 0); }
  98% { transform: translate(3px, 0); }
}

@keyframes glitch-1 {
  0%, 85%, 100% { transform: translate(0); opacity: 0; }
  86% { transform: translate(-8px, 0); opacity: 0.8; }
  88% { transform: translate(8px, 0); opacity: 0.6; }
  90% { opacity: 0; }
}

@keyframes glitch-2 {
  0%, 87%, 100% { transform: translate(0); opacity: 0; }
  88% { transform: translate(10px, 0); opacity: 0.8; }
  90% { transform: translate(-10px, 0); opacity: 0.6; }
  92% { opacity: 0; }
}

.title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 30px;
  text-shadow: 2px 0 0 rgba(255, 255, 0, 0.3), -2px 0 0 rgba(0, 255, 255, 0.3);
}

.message {
  margin-top: 40px;
  font-size: 1rem;
  color: #888;
  line-height: 1.8;
}

.message a {
  color: #ffff00;
  text-decoration: none;
}

.message a:hover {
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

.back {
  margin-top: 30px;
}

.back a {
  color: #667eea;
  text-decoration: none;
  font-size: 0.9rem;
}

.back a:hover {
  color: #764ba2;
}

/* Scanlines */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 0, 0.02) 2px,
    rgba(255, 255, 0, 0.02) 4px
  );
}

@media (max-width: 600px) {
  .status { font-size: 1.8rem; letter-spacing: 4px; }
  .title { font-size: 1.5rem; }
}
