* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

/* Landing content */
.landing-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: white;
}

.landing-content h1 {
  font-size: 4em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.landing-content p {
  font-size: 1.5em;
  margin-bottom: 40px;
}

/* Buttons container */
.buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  text-decoration: none;
  padding: 18px 50px;
  font-weight: bold;
  font-size: 1.5em;
  border-radius: 12px;
  transition: transform 0.2s, filter 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #3498db;
  color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

/* Discord button */
.discord-btn {
  background: #7289da;
}

.discord-btn .icon {
  width: 30px;
  height: 30px;
}

/* Canvas fills the screen */
#bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

/* Responsive */
@media (max-width: 800px) {
  .landing-content h1 { font-size: 3em; }
  .landing-content p { font-size: 1.2em; }
  .btn { font-size: 1.2em; padding: 14px 30px; }
  .discord-btn .icon { width: 25px; height: 25px; }
}
