<style>
/* Grundlegendes Design */

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    height: 100%;
}


/* Fließtext und Listen zwingend hellgrau/weiß machen */

p,
li {
    color: #e2e8f0;
    font-size: 1.05rem;
    /* Macht den Text auch ein winziges bisschen größer für bessere Lesbarkeit */
}


/* Das Datum bei den Lebenslauf-Einträgen */

.cv-date {
    color: #00d2ff;
    /* Mach das Datum zur besseren Unterscheidung Neonblau */
    font-size: 0.95rem;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    display: block;
}


/* Video Hintergrund Positionierung */

.video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    /* Drückt das Video ganz nach hinten */
    transform: translate(-50%, -50%);
    /* Zentriert das Video perfekt */
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 25, 0.4);
    /* Dunkler Filter über dem Video */
    z-index: -1;
}


/* Glassmorphism Container (Glas-Effekt) */

.container {
    max-width: 850px;
    margin: 4rem auto;
    padding: 3rem;
    background: rgba(45, 60, 80, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}


/* Header Bereich */

header {
    text-align: center;
    border-bottom: 2px solid #00d2ff;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

header h1 {
    margin: 0;
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

header p {
    font-size: 1.3rem;
    color: #00d2ff;
    margin-top: 0.5rem;
    font-weight: 300;
}


/* Download Buttons */

.download-section {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-block;
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    border: 1px solid #00d2ff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #00d2ff;
    color: #0a0f19;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}


/* Abschnitte */

section {
    margin-bottom: 3.5rem;
}

h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

h2::after {
    content: "";
    flex: 1;
    margin-left: 1rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}


/* Lebenslauf-Einträge */

.cv-item {
    margin-bottom: 2rem;
    border-left: 3px solid #00d2ff;
    padding-left: 1.5rem;
    position: relative;
}

.cv-item::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 5px;
    width: 13px;
    height: 13px;
    background: #00d2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d2ff;
}

.cv-item h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #ffffff;
}

.cv-date {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    display: block;
}


/* Fähigkeiten (Skills) */

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.skill-tag:hover {
    border-color: #00d2ff;
    color: #00d2ff;
}


/* Kontakt & Links */

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: #00d2ff;
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}

a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.6);
}


/* Footer */

footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #718096;
    font-size: 0.85rem;
}


/* Responsive Design */

@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1.5rem;
    }
    header h1 {
        font-size: 2.2rem;
    }
    .btn-download {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

</style>