/* Reset and minimalist base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
  font-family: monospace;
  background: #ffffff;
  overflow: hidden;
}

/* Moving background */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,0,0,0.05) 1%, transparent 1%) 0 0/50px 50px,
              radial-gradient(circle, rgba(0,0,0,0.03) 1%, transparent 1%) 25px 25px/50px 50px;
  animation: move 20s linear infinite;
}
@keyframes move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50px, -50px); }
}

/* UI Container with fade-in scale-up animation */
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  text-align: center;
  opacity: 0;
  animation: fadeInScale 1.5s ease-out forwards;
}
@keyframes fadeInScale {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.container h1 {
  font-size: 2em;
  margin-bottom: 10px;
}
.container p {
  margin: 10px 0;
  font-size: 1em;
  color: #333;
}

.projects {
  margin-top: 20px;
}
.projects li {
  list-style: none;
  margin: 8px 0;
}

/* Minimal join button */
.join-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}
.join-btn:hover {
  background: #333;
}
