* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Golos Text', sans-serif;
    background: linear-gradient(135deg, #0d0d2b, #1a1a3d);
    color: #e0e0ff;
    min-height: 100vh;
    position: relative;
}

/* Kästchen-Grid Hintergrund (blurred glowing squares) */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        repeating-conic-gradient(from 90deg at 50% 50%, transparent 0deg, rgba(80, 120, 255, 0.03) 90deg),
        radial-gradient(circle at 20% 80%, rgba(100, 150, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 80% 20%, rgba(120, 180, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 40% 40%, rgba(80, 120, 255, 0.1) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background: rgba(10, 10, 30, 0.7);
    backdrop-filter: blur(12px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 150, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-section img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #5ecfff;
    box-shadow: 0 0 25px rgba(94, 207, 255, 0.6);
}

.logo-section h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(94, 207, 255, 0.7);
}

/* Navigation mittig */
nav {
    flex: 1;
    text-align: center;
}

.nav-links {
    display: inline-flex;
    gap: 60px;
}

.nav-links a {
    color: #b8d4ff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.nav-links a:hover {
    color: #5ecfff;
    text-shadow: 0 0 20px rgba(94, 207, 255, 0.9);
    transform: translateY(-4px);
}

/* Dashboard-Titel rechts */
.dashboard-title {
    font-size: 2rem;
    font-weight: 500;
    color: #a0c0ff;
    text-align: right;
}

/* Content-Bereich (damit nichts unter Header verschwindet) */
main {
    padding-top: 140px;
}

/* Weitere Styles (Glass-Cards, Buttons etc. – falls du sie noch hast, hier dranhängen) */
/* Beispiel für Glass-Cards */
.glass-card {
    background: rgba(20, 30, 60, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(94, 207, 255, 0.3);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(94, 207, 255, 0.3);
}