@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

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

body {
  height: 100vh;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  color: #ffa31a;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

.logo-section {
  position: relative;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.fire-icon {
  width: 60px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  animation: flicker 1.5s infinite alternate;
  opacity: 0.8;
}

.main-logo {
  width: 200px;
  filter: drop-shadow(0 0 15px #ffa31a);
}

.headline {
  margin-top: 40px;
  font-size: 2rem;
  text-shadow: 0 0 10px #ff8c00;
  letter-spacing: 1px;
}

.subtext {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #ffcc80;
}

.discord-link {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 25px;
  background: #ffa31a;
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 0 20px #ff8c00;
  transition: all 0.3s ease;
}

.discord-link:hover {
  background: #ff8c00;
  transform: scale(1.05);
}

footer {
  position: absolute;
  bottom: 15px;
  color: #ffb84d;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Animacje */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes flicker {
  0% { opacity: 0.7; filter: drop-shadow(0 0 5px #ff6a00); }
  50% { opacity: 1; filter: drop-shadow(0 0 20px #ffa31a); }
  100% { opacity: 0.7; filter: drop-shadow(0 0 10px #ff6a00); }
}
