@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  margin: 0;
  font-family: 'Share Tech Mono', monospace;
  background: white;
  color: black;
  overflow: hidden;
}

nav {
  padding: 20px;
  text-align: center;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #666;
}

main {
  padding: 40px;
  max-width: 600px;
  margin: auto;
}

.splash {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: white;
  color: black;
  position: relative;
  overflow: hidden;
}

.splash-container {
  z-index: 2;
  text-align: center;
}

.splash-text {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.enter-link {
  font-size: 1em;
  text-decoration: none;
  color: black;
  border: 1px solid black;
  padding: 5px 15px;
  transition: all 0.3s ease;
}

.enter-link:hover {
  background: black;
  color: white;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
  animation: thunderMove 10s infinite linear;
  z-index: 1;
  pointer-events: none;
}

@keyframes thunderMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, -50%); }
}
