body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}
.header .logo a {
    color: #D40000;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: color 0.3s ease;
    position: relative;
}

@keyframes glitch {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0, 0); }
}
@keyframes digital-flicker {
    0%, 100% {
        color: #00FF00;
        text-shadow: 
            0 0 5px #00FF00,
            0 0 10px #00FF00,
            0 0 20px rgba(0, 255, 0, 0.5);
    }
    10% {
        color: #009900;
        text-shadow: none;
    }
    30% {
        color: #00FF00;
        text-shadow: 
            0 0 2px #00FF00,
            1px 1px 0 #1a1a1a,
            -1px -1px 0 #1a1a1a;
    }
    70% {
        color: #00FF00;
        text-shadow: 
            0 0 10px #00FF00,
            0 0 5px #009900,
            -1px 1px 0 #1a1a1a;
    }
    90% {
        color: #00FF00;
        text-shadow: none;
    }
}

.header .logo a:hover {
    color: #00FF00;
    animation: digital-flicker 0.2s infinite, glitch 0.3s infinite;
}

.header .nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 5px;
}

.header .nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #D40000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header .nav a:hover {
    color: #D40000;
}

.header .nav a:hover::after {
    left: 0;
    width: 100%;
}

.hero-section {
    background-image: url('./img/anim.gif');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    min-height: 600px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    gap: 40px;
}
.hero-section .text-content {
    flex: 1;
}
.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
}
.hero-section .name {
    color: #D40000;
}
.hero-section .description {
    margin-top: 20px;
    line-height: 1.6;
}
.hero-section .social-links {
    margin-top: 20px;
}
.hero-section .image-content {
    flex: 1;
    text-align: right;
    position: relative;
}
.hero-section .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 100%);
}
.hero-section .image-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    /* Transparenz mit rgba() angepasst */
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
    border-radius: 10px;
}
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    gap: 40px;
}
.about-section .image-content, .about-section .text-content {
    flex: 1;
}
.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.about-section .download-button {
    background-color: #D40000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}