      /* --- GRUNDLAGEN & VARIABLEN (aus vorherigen Seiten) --- */
        :root {
            --color-background: #020412;
            --color-surface: #0A192F;
            --color-text: #E0E0E0;
            --color-text-muted: #8892b0;
            --color-gold: #D4AF37;
            --color-glow-blue: #00BFFF;
            --font-heading: 'Orbitron', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: var(--font-body);
            background-color: var(--color-background);
            background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
            color: var(--color-text);
        }

        /* --- CONTAINER & ALLGEMEINES LAYOUT --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 8rem 2rem 2rem;
        }
        .main-header h1 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            margin-bottom: 2rem;
        }

        /* --- STATISTIK-KARTEN --- */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .stat-card {
            background: var(--color-surface);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(0, 191, 255, 0.2);
        }
        .stat-card.highlight {
            border-color: var(--color-glow-blue);
            box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
        }
        .stat-card .value {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: bold;
        }
        .stat-card .label {
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }
        
        /* --- HAUPTBEREICH (TEAM-LISTE) --- */
        .card {
            background: var(--color-surface);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid rgba(0, 191, 255, 0.2);
        }
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .card-header h2 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
        }
        .btn-gold { /* ... aus vorherigen Seiten bekannt ... */ }
        .btn-primary {
             background: var(--color-glow-blue); color: black; font-weight: bold; text-decoration: none; padding: 0.5rem 1rem; border-radius: 4px;
        }

        /* --- TABELLE --- */
        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }
        th, td {
            padding: 1rem;
            border-bottom: 1px solid rgba(0,191,255,0.1);
        }
        th { color: var(--color-text-muted); }