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

body {
  font-family: 'Press Start 2P', cursive;
  background: black;
  color: #39ff14;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.1) 2px,
    transparent 2px,
    transparent 40px
  ),
  repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.1) 2px,
    transparent 2px,
    transparent 40px
  );
  animation: moveGrid 10s linear infinite;
  z-index: 0;
}

@keyframes moveGrid {
  from { transform: translate(0, 0); }
  to { transform: translate(-40px, -40px); }
}

.coming-soon, .ig-handle {
  z-index: 1;
  text-align: center;
  font-size: 2rem;
  color: #ff00ff;
  text-shadow:
    0 0 5px #ff00ff,
    0 0 10px #ff00ff,
    0 0 20px #ff00ff,
    0 0 40px #ff00ff;
  animation: flicker 1.5s infinite;
}

.ig-handle {
  font-size: 1rem;
  margin-top: 20px;
}

.ig-handle a {
  color: #00ffff;
  text-decoration: none;
  text-shadow:
    0 0 5px #00ffff,
    0 0 10px #00ffff,
    0 0 20px #00ffff;
}

.ig-handle a:hover {
  color: #39ff14;
  text-shadow:
    0 0 5px #39ff14,
    0 0 15px #39ff14,
    0 0 30px #39ff14;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 22%, 24%, 55% { opacity: 0.4; }
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  z-index: 1;
}

.typewriter-container {
  margin-top: 30px;
  font-size: 1rem;
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14;
  display: flex;
  align-items: center;
  z-index: 1;
}

.cursor {
  margin-left: 5px;
  animation: blink 1s infinite;
}

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