:root {
  --blue-1: #e90e0e;
  --blue-2: #eb5325;
  --bg-dark: #05060a;
}

body {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(37,99,235,0.12), transparent 6%),
              radial-gradient(900px 400px at 90% 90%, rgba(14,165,233,0.10), transparent 6%),
              var(--bg-dark);
  color: #e6eef8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Inter, ui-sans-serif, system-ui;
}

/* Neon Button */
.btn-neon {
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  color: white;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 6px 30px rgba(235, 37, 37, 0.18), inset 0 -3px 8px rgba(0,0,0,0.25);
  transition: transform .18s ease, box-shadow .18s ease;
  display: inline-block;
}
.btn-neon:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 50px rgba(235, 37, 37, 0.3);
}

/* Glass Card */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Floating Dots */
.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(14,165,233,0.12);
  animation: float 6s infinite ease-in-out;
}
@keyframes float {
  0% { transform: translateY(0) }
  50% { transform: translateY(-18px) }
  100% { transform: translateY(0) }
}

/* Slide-Down Animation fürs Mobile-Menü */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-slideDown {
  animation: slideDown 0.3s ease forwards;
}

/* Sanfte Float Animation */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.animate-float-slow {
  animation: floatSlow 8s ease-in-out infinite;
}

/* Float Animation für Features */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Fraktionen Bilder */
.fraktion-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

/* Hero Title */
.hero-title {
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

/* Notify */
#notify-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 9999;
}

.notify {
  min-width: 260px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.4s forwards, fadeOut 0.5s ease 4.5s forwards;
}

.notify-success { background: linear-gradient(90deg, #10b981, #059669); }
.notify-error   { background: linear-gradient(90deg, #ef4444, #b91c1c); }
.notify-info    { background: linear-gradient(90deg, #3b82f6, #2563eb); }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateY(30px); }
}

/* Dropdown Animation */
.dropdown {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Animation fürs Fallen */
@keyframes fall {
  to {
    transform: translateY(110vh);
    opacity: 0;
  }
}

#season-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20; /* zwischen Background und Content */
}

#season-effects span {
  position: absolute;
  top: -2rem;
  font-size: 24px;
  animation: fall 5s linear forwards;
  color: white;
}

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-dot.online {
  background: #22c55e; /* grün */
  box-shadow: 0 0 10px #22c55e, 0 0 20px #22c55e;
  animation: pulse 1.5s infinite;
}

.status-dot.offline {
  background: #ef4444; /* rot */
  box-shadow: 0 0 10px #ef4444, 0 0 20px #ef4444;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .animate-fadeIn {
    animation: fadeIn 1.2s ease forwards;
  }
