* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: linear-gradient(160deg, #1a0a2e 0%, #2d1057 40%, #1a0a2e 100%);
  font-family: 'Segoe UI', system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #c9b8f5;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 540px;
}

.logo {
  width: 110px;
  height: 110px;
  margin-bottom: 1.5rem;
  transform-origin: center;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.badge {
  background: rgba(167, 100, 255, 0.15);
  border: 1px solid rgba(167, 100, 255, 0.45);
  color: #c9a8ff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

h1 {
  color: #ede0ff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.4rem;
}

.subtitle {
  color: #a078d4;
  font-size: 16px;
  margin-bottom: 2rem;
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7c3ded, transparent);
  margin-bottom: 2rem;
}

.info {
  color: #c4a8e8;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5865F2;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  margin-bottom: 2rem;
  transition: 0.2s;
}

.discord-btn:hover {
  background: #4752c4;
  transform: scale(1.04);
}

.discord-btn:active {
  transform: scale(0.97);
}

.bottom-note {
  color: #7c5aaa;
  font-size: 12px;
}