 * {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(ellipse at top, #1f1f1f 0%, #000 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  animation: fadeIn 1.5s ease;
}

.banner-container {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 30px #000;
  flex-shrink: 0;
}

.banner {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  display: block;
  animation: slideDown 1.2s ease;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  animation: fadeInUp 2s ease;
}

.title {
  font-size: 72px;
  letter-spacing: 4px;
  text-shadow: 0 0 25px rgba(255,255,255,0.15), 0 0 50px rgba(255,255,255,0.1);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 26px;
  color: #cccccc;
  text-shadow: 0 0 8px #ffffff11;
  margin-bottom: 40px;
}

.discord-btn-container {
  display: flex;
  justify-content: center;
}

.discord-btn {
  background: linear-gradient(145deg, #7289DA, #5b6eae);
  color: white;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 0 20px #7289DA44;
  transition: all 0.3s ease;
}

.discord-btn:hover {
  background: linear-gradient(145deg, #5b6eae, #7289DA);
  transform: scale(1.05);
  box-shadow: 0 0 30px #7289DA88;
}

.footer {
  padding: 30px 10px;
  font-size: 14px;
  color: #888;
  text-align: center;
  animation: fadeIn 3s ease;
}

@media (max-width: 600px) {
  .title {
    font-size: 42px;
  }
  .subtitle {
    font-size: 20px;
  }
  .discord-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}