* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

.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 {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.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-btn {
  background: #7289da;
}

.discord-btn .icon {
  width: 30px;
  height: 30px;
}

#bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

@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; }
}

/* "Updated!" Text */

.landing-content h1 {
  position: relative;
  display: inline-block;
  font-size: 4em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.updated-badge {
  position: absolute;
  right: -50px;  
  top: -5px;      
  transform: rotate(20deg);
  color: red;
  font-size: 0.5em;
  font-weight: bold;
  animation: pulse 1.2s infinite alternate;
}

@keyframes pulse {
  0% { transform: rotate(20deg) scale(1); }
  50% { transform: rotate(20deg) scale(1.3); }
  100% { transform: rotate(20deg) scale(1); }
}
