* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  height: 100vh;
  background: #0f172a;
  overflow: hidden;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Animated gradient background */
body::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, #6366f1, transparent 40%),
              radial-gradient(circle at 70% 60%, #38bdf8, transparent 40%),
              radial-gradient(circle at 50% 80%, #0ea5e9, transparent 40%);
  animation: moveBackground 15s infinite alternate ease-in-out;
  z-index: 0;
  opacity: 0.4;
}

@keyframes moveBackground {
  0% { transform: translate(0%, 0%) scale(1); }
  100% { transform: translate(-10%, -10%) scale(1.2); }
}

.container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  animation: fadeIn 1.5s ease;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 15px;
  line-height: 1.6;
}

.stats {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat {
  font-size: 2rem;
  font-weight: 700;
}

.stat span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.6;
  margin-top: 5px;
}

.footer {
  margin-top: 60px;
  font-size: 0.9rem;
  opacity: 0.4;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.discord-btn {
  display: inline-block;
  margin-bottom: 30px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, #5865F2, #4752C4);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
  transition: all 0.3s ease;
}

.discord-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(88, 101, 242, 0.7);
}

.discord-btn:active {
  transform: translateY(0px);
}