/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }

body, html {
  height: 100%;
  font-family: 'Roboto Mono', monospace;
  overflow: hidden;
  background: #000;
  color: #fff;
}

#matrix-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
  background: #000;
  z-index: 0;
}

.overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.65);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
  text-align:center;
}

.content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: #0ff;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
}

/* Glitch effect */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
}
.glitch::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
  color: #f0f;
}
.glitch::after {
  animation: glitchBottom 1.5s infinite linear alternate-reverse;
  color: #0ff;
}
@keyframes glitchTop {
  0% { clip: rect(0, 9999px, 0, 0); }
  20% { clip: rect(0, 9999px, 100%, 0); transform: translate(-5px, -3px); }
  40% { clip: rect(0, 9999px, 30%, 0); transform: translate(3px, 2px); }
  60% { clip: rect(0, 9999px, 50%, 0); }
  100% { clip: rect(0, 9999px, 0, 0); }
}
@keyframes glitchBottom {
  0% { clip: rect(0, 9999px, 0, 0); }
  20% { clip: rect(40%, 9999px, 100%, 0); transform: translate(5px, 2px); }
  40% { clip: rect(10%, 9999px, 80%, 0); transform: translate(-2px, -3px); }
  60% { clip: rect(20%, 9999px, 100%, 0); }
  100% { clip: rect(0, 9999px, 0, 0); }
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ddd;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.time-box {
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 10px;
  min-width: 80px;
  box-shadow: 0 0 10px #0ff;
}
.time-box span {
  font-size: 2rem;
  display: block;
  font-weight: bold;
  color: #0ff;
}
.time-box small {
  font-size: 0.8rem;
  color: #ccc;
}

.social a {
  color: #0ff;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.social a:hover {
  color: #f0f;
}
