@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;700&display=swap');

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

:root {
  --bg: #0c0800; /* Sehr dunkles Orange/Schwarz */
  --text: #fdf4e8;
  --orange: #f97316;
  --orange-glow: rgba(249, 115, 22, 0.5);
  --border: rgba(249, 115, 22, 0.15);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

/* Zentraler, sauberer Container */
.login-wrap {
  background: rgba(22, 15, 0, 0.6); /* Leicht transparent */
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  text-align: center;
  /* Dezenter Box-Glow */
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.1);
}

/* Brand - Sauberer Text, dezenter Glow */
.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: var(--text);
  text-shadow: 0 0 10px var(--orange-glow);
}
.brand-or { color: var(--orange); }

/* Titel - Weniger aggressiv */
.login-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.login-sub {
  font-size: 14px;
  color: #b89a6a; /* Muted Gold */
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Button - Neon-Effekt behalten, aber Form simplifiziert */
.disc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s ease;
  /* Starker Glow beim Button */
  box-shadow: 0 4px 15px var(--orange-glow);
}
.disc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.7);
}

/* Stats - Aufgeräumte Reihe */
.stat-row {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.stat-box { text-align: center; }

.sb-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--orange);
  /* Starker Zahlen-Glow */
  text-shadow: 0 0 15px var(--orange-glow);
  line-height: 1;
}

.sb-lbl {
  font-size: 12px;
  color: #b89a6a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}
