    :root {
      --bg-1: #0b1020;
      --bg-2: #121a31;
      --card: rgba(17, 24, 39, 0.78);
      --card-border: rgba(255, 255, 255, 0.1);
      --text: #eef2ff;
      --muted: #aab4d0;
      --accent: #6ee7ff;
      --accent-2: #8b5cf6;
      --success: #22c55e;
	  --pending: #d66400;
      --offline: #64748b;
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
      --radius: 24px;
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      min-height: 100%;
      font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(110, 231, 255, 0.16), transparent 30%),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), transparent 28%),
        linear-gradient(135deg, var(--bg-1), var(--bg-2));
    }

    body {
      display: flex;
      justify-content: center;
      padding: 32px;
    }

    .page {
      width: 100%;
      max-width: 1120px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .site-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-badge {
      min-width: 54px;
      height: 54px;
      border-radius: 16px;
      display: grid;
      place-items: center;
		background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #09111f;
      font-weight: 800;
      letter-spacing: 0.06em;
		box-shadow: 0 12px 30px rgba(110, 231, 255, 0.25); 
      flex: 0 0 254px;
    }

    .brand small {
      display: block;
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 4px;
      font-size: 0.74rem;
    }

    .brand strong {
      font-size: 1.15rem;
      font-weight: 700;
    }

    .top-nav {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
	  margin-top: 20px;
    }

    .nav-link {
      text-decoration: none;
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 600;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .nav-link:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.1);
      border-color: rgba(110, 231, 255, 0.32);
    }

    .shell {
      width: 100%;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: stretch;
    }

    .panel,
    .hero {
      background: var(--card);
      border: 1px solid var(--card-border);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .panel {
      background: transparent;
      border: none;
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      display: flex;
      flex-direction: column;
      gap: 22px;
      min-height: 680px;
    }

    .hero {
      position: relative;
      padding: 42px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100px;
	  min-width: 100%;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
        radial-gradient(circle at 80% 20%, rgba(110,231,255,0.18), transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(139,92,246,0.2), transparent 30%);
      pointer-events: none;
    }

    .hero-content,
    .hero-footer {
      position: relative;
      z-index: 1;
    }

    .hero h2 {
      margin: 18px 0 12px;
      font-size: clamp(1.5rem, 2.8vw, 2.4rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
      max-width: 40ch;
    }

    .hero p {
      margin: 0;
      max-width: 48ch;
      color: var(--muted);
      font-size: 1.02rem;
      line-height: 1.7;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
      margin-bottom: 40px;
    }

    .mini-card {
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
      border-radius: 18px;
      padding: 18px;
    }

    .mini-card span {
      display: block;
      color: var(--muted);
      font-size: 0.82rem;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .mini-card strong {
      font-size: 1rem;
      font-weight: 700;
    }

    .hero-footer {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .tag {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--muted);
      font-size: 0.9rem;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--card-border);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 32px;
    }

    .panel-head h2 {
      margin: 0;
      font-size: 1.8rem;
      letter-spacing: -0.03em;
    }

    .panel-head p {
      margin: 10px 0 0;
      color: var(--muted);
      line-height: 1.65;
    }

    form {
      margin-top: 30px;
      display: grid;
      gap: 20px;
    }

    .field {
      display: grid;
      gap: 9px;
    }

    label {
      font-size: 0.95rem;
      font-weight: 600;
      color: #dbe7ff;
    }

    input,
    select {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(7, 12, 24, 0.72);
      color: var(--text);
      border-radius: 16px;
      padding: 16px 18px;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    input::placeholder {
      color: #7f8cb1;
    }

    input:focus,
    select:focus {
      border-color: rgba(110, 231, 255, 0.8);
      box-shadow: 0 0 0 4px rgba(110, 231, 255, 0.12);
      transform: translateY(-1px);
    }

    .button-row {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 6px;
    }

.primary-btn,
.table-btn {
  border: 1px solid rgba(110, 231, 255, 0.25);
  border-radius: 18px;
  padding: 16px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: rgba(110, 231, 255, 0.08);
  box-shadow: none;
  transition: all 0.2s ease;
}

    .table-btn {
      padding: 8px 14px;
      border-radius: 12px;
      font-size: 0.8rem;
      font-weight: 600;
      box-shadow: none;
    }

.primary-btn:hover,
.table-btn:hover {
  background: rgba(110, 231, 255, 0.15);
  border-color: rgba(110, 231, 255, 0.5);
}

    .hint {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .mock-result {
      margin-top: 26px;
      padding: 18px;
      border-radius: 18px;
      border: 1px solid rgba(56, 189, 248, 0.24);
      background: rgba(56, 189, 248, 0.08);
    }

    .mock-result strong {
      display: block;
      margin-bottom: 8px;
      font-size: 1rem;
    }

    .mock-result p {
      margin: 0;
      color: #d9f5ff;
      line-height: 1.6;
    }

    .footnote {
      margin-top: 18px;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.55;
    }

    .leaderboard-card {
      grid-column: 1 / -1;
    }

    .leaderboard-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 24px;
      overflow: hidden;
      border-radius: 18px;
    }

    .leaderboard-table thead th {
      text-align: left;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      white-space: nowrap;
      cursor: pointer;
      position: relative;
    }

    .leaderboard-table thead th::after {
      content: '';
      position: absolute;
      right: 8px;
      opacity: 0.4;
    }

    .leaderboard-table thead th.asc::after {
      content: '▲';
      opacity: 1;
    }

    .leaderboard-table thead th.desc::after {
      content: '▼';
      opacity: 1;
    }

    .leaderboard-table tbody tr {
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: background 0.2s ease;
    }

    .leaderboard-table tbody tr:hover {
      background: rgba(255,255,255,0.04);
    }

    .leaderboard-table td {
      padding: 14px 16px;
      font-size: 0.96rem;
    }

    .rank {
      width: 70px;
      font-weight: 700;
      color: #dbe7ff;
    }
    .status-trusted {
      color: var(--success);
      font-weight: 600;
    }

    .status-pending {
      color: var(--pending);
      font-weight: 600;
    }
    .status-online {
      color: var(--success);
      font-weight: 600;
    }

    .status-offline {
      color: var(--offline);
      font-weight: 600;
    }

    .player-name {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      flex: 0 0 10px;
      box-shadow: 0 0 12px currentColor;
    }

    .online-dot {
      color: var(--success);
      background: var(--success);
    }

    .offline-dot {
      color: var(--offline);
      background: var(--offline);
      box-shadow: none;
    }

    @media (max-width: 920px) {
      .shell {
        grid-template-columns: 1fr;
      }

      .hero,
      .panel {
        min-height: auto;
      }

      .hero h2 {
        max-width: none;
      }

      .site-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .top-nav {
        justify-content: flex-start;
      }
    }
	.card-login {
		background:
			radial-gradient(circle at top left, rgba(110, 231, 255, 0.16), transparent 30%),
			radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), transparent 28%),
			linear-gradient(135deg, var(--bg-1), var(--bg-2));
	}

	.card-server {
		background:
			radial-gradient(circle at top left, rgba(110, 231, 255, 0.16), transparent 30%),
			radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), transparent 28%),
			linear-gradient(135deg, var(--bg-1), var(--bg-2));
	}

	.card-identity {
		background:
			radial-gradient(circle at top left, rgba(110, 231, 255, 0.16), transparent 30%),
			radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), transparent 28%),
			linear-gradient(135deg, var(--bg-1), var(--bg-2));
	}
	.brand-logo {
		max-height: 80px;
	}
	

/* Card leicht anpassen */
.footer-card {
  margin-top: 40px;
  padding: 0;
}

/* Footer Layout */
.site-footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
}

/* Top Bereich */
.footer-top {
  margin-bottom: 10px;
}

.footer-top strong {
  display: block;
  font-size: 18px;
  color: #ffffff;
}

.footer-sub {
  font-size: 13px;
  color: #888;
}

/* Links */
.footer-links {
  margin: 15px 0;
}

.footer-links a,
.footer-links a:visited,
.footer-links a:active {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* Hover Effekt (TO Style) */
.footer-links a:hover {
  color: #4CAF50;
  text-shadow: 0 0 6px rgba(76, 175, 80, 0.6);
}

/* Bottom */
.footer-bottom {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}