:root {
    --bg: #050505;
    --accent: #00f2ff;
    --text: #ffffff;
    --text-dim: #888888;
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background-color: var(--bg); 
    color: var(--text); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6;
}

/* Hintergrund: Statisches, dezentes Raster ohne abdunkelnde Maske */
.bg-grid {
    position: fixed; inset: 0; z-index: -1;
    background-image: 
        linear-gradient(var(--border) 1px, transparent 1px), 
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.cursor-glow {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 242, 255, 0.05) 0%, transparent 40%);
    pointer-events: none; z-index: 0;
}

.hero-section {
    height: 100vh; width: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; position: fixed; 
    top: 0; left: 0; z-index: 1; text-align: center;
}

.scroll-hint { 
    position: absolute; 
    bottom: 40px; 
    left: 50%; 
    transform: translateX(-50%);
    color: var(--text-dim); 
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse { 
    width: 24px; height: 38px; 
    border: 2px solid var(--text-dim); 
    border-radius: 12px; 
    display: flex; 
    justify-content: center; 
    margin-bottom: 8px; 
}

.main-title { 
    font-size: clamp(3.5rem, 15vw, 10rem); 
    font-weight: 900; 
    letter-spacing: -0.05em; 
    line-height: 1; 
    color: #fff;
}

.main-content { 
    position: relative; 
    z-index: 10; 
    margin-top: 100vh; 
    background: var(--bg);
    border-top: 1px solid var(--border);
    width: 100%;
}

.container { 
    max-width: 900px; 
    margin: 0 auto; 
    padding: 100px 25px; 
}

/* Projekte */
.project-list { border-top: 1px solid var(--border); }

.project-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 50px 0; 
    border-bottom: 1px solid var(--border); 
    text-decoration: none; 
    color: #fff; 
    transition: 0.4s; 
}

.project-item:hover { color: var(--accent); padding-left: 20px; }

.p-left { display: flex; align-items: center; gap: 35px; }
.p-index { font-family: monospace; color: var(--accent); font-weight: bold; font-size: 1rem; }
.p-details h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; }
.p-details p { color: var(--text-dim); margin-top: 5px; font-size: 1rem; }

/* Expertise im alten Design */
.content-block { margin-bottom: 150px; }
.section-label { 
    color: var(--accent); 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    margin-bottom: 50px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}
.section-label::after { content: ""; height: 1px; flex-grow: 1; background: var(--border); }

.skills-grid-classic { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; }
.skill-category h3 { font-size: 1.2rem; margin-bottom: 25px; color: #fff; border-left: 3px solid var(--accent); padding-left: 15px; }
.skill-category ul { list-style: none; }
.skill-category li { color: #ccc; margin-bottom: 12px; font-size: 1rem; }

/* Restliche UI */
.lang-switcher { position: fixed; top: 25px; right: 25px; z-index: 1000; background: #111; border: 1px solid var(--border); padding: 5px; border-radius: 12px; }
.lang-switcher button { background: none; border: none; color: #fff; padding: 8px 16px; cursor: pointer; font-weight: bold; opacity: 0.4; }
.lang-switcher button.active { opacity: 1; color: var(--accent); }

.wheel { width: 2px; height: 6px; background: var(--accent); margin-top: 6px; animation: scroll-move 2s infinite; }
@keyframes scroll-move { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }

footer {
    text-align: center;
}