* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  background: radial-gradient(circle at center, #001a00 0%, #000 100%);
  color: #00ff88;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.background {
  position: fixed;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg, #00ff88, #005533, #001a00, #00ff88);
  animation: spin 20s linear infinite;
  filter: blur(180px);
  z-index: 0;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeIn 2s ease forwards;
}

.logo {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 25px #00ff88);
  animation: float 3s ease-in-out infinite;
}

h1 {
  font-size: 3rem;
  margin-top: 20px;
  text-shadow: 0 0 20px #00ff88;
  letter-spacing: 2px;
}

p {
  color: #bfffe0;
  margin-top: 10px;
  font-size: 1.2rem;
  text-shadow: 0 0 10px #007a4e;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.btn {
  text-decoration: none;
  color: #00ff88;
  border: 2px solid #00ff88;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: #00ff88;
  color: #000;
  box-shadow: 0 0 25px #00ff88;
  transform: scale(1.05);
}

.discord {
  color: #7289da;
  border-color: #7289da;
}

.discord:hover {
  background: #7289da;
  color: white;
  box-shadow: 0 0 25px #7289da;
}

/* Animacje */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
