body {
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
  background-color: #000;
  color: #f00;
  overflow: hidden;
  height: 100vh;
}

.logo {
  display: block;
  margin: 20px auto;
  width: 150px;
  z-index: 1;
  position: relative;
}

.terminal {
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
  z-index: 1;
  padding: 0 20px;
}

h1 {
  color: #a020f0;
  font-size: 28px;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.cursor {
  animation: blink 1s infinite;
}

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

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.btn, .discord-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  color: #fff;
  background: #a020f0;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
  font-size: 16px;
  z-index: 1;
  position: relative;
}

.btn:hover, .discord-btn:hover {
  background: #800000;
  transform: scale(1.05);
}

.discord-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: transparent;
}
