@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    --primary-blue: #0066b2;
    --primary-hover: #004c85;
    --bg-color: #f4f7f6;
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary-blue: #3b82f6;
    --primary-hover: #60a5fa;
    --bg-color: #12181b;
    --card-bg: #1e252b;
    --text-color: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: #374151;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--bg-color); color: var(--text-color); transition: var(--transition); display: flex; flex-direction: column; min-height: 100vh; }

nav { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; background-color: var(--card-bg); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); position: sticky; top: 0; z-index: 100; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-blue); text-transform: uppercase; letter-spacing: 1px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-color); text-decoration: none; font-weight: 600; transition: var(--transition); }
.nav-links a:hover { color: var(--primary-blue); }
.theme-toggle { cursor: pointer; font-size: 1.2rem; color: var(--text-color); }

.hero { height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(rgba(0, 102, 178, 0.8), rgba(0, 0, 0, 0.7)), #0066b2; color: #fff; padding: 0 20px; }
.hero h1 { font-size: 4rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }

.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background-color: var(--primary-blue); color: #fff; }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); }
.btn-discord { background-color: #5865F2; color: white; }
.btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Page Content Wrapper */
.page-container { flex: 1; padding: 50px 5%; max-width: 1200px; margin: 0 auto; width: 100%; }
.page-container h1 { color: var(--primary-blue); margin-bottom: 20px; }
.page-container p { line-height: 1.6; margin-bottom: 15px; }
.page-container h2 { margin: 30px 0 15px 0; border-bottom: 2px solid var(--border-color); padding-bottom: 5px; }

/* Team Grid für das Frontend */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.team-card { background: var(--card-bg); border-radius: 12px; padding: 25px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-top: 4px solid var(--primary-blue); transition: transform 0.3s ease; }
.team-card:hover { transform: translateY(-5px); }
.team-card i { font-size: 3rem; color: var(--text-muted); margin-bottom: 15px; }
.team-card h3 { margin-bottom: 5px; color: var(--text-color); }
.team-card .rank { display: inline-block; background: var(--primary-blue); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; margin-bottom: 15px; }
.team-card .discord { color: #5865F2; font-size: 0.9rem; font-weight: 600; }

footer { background-color: var(--card-bg); padding: 2rem 5%; text-align: center; border-top: 1px solid var(--border-color); margin-top: auto; }
.footer-links { margin-top: 1rem; display: flex; justify-content: center; gap: 1.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--primary-blue); }

@media (max-width: 768px) { .nav-links { display: none; } .hero h1 { font-size: 2.5rem; } }
