
body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    scroll-behavior: smooth;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    background: radial-gradient(circle at center, #0ff2, #00f4, #000);
}

.logo {
    width: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #0ff);
}

h1.glitch {
    font-size: 48px;
    color: #0ff;
    position: relative;
}

h1.glitch::before,
h1.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
}

h1.glitch::before {
    animation: glitchTop 2s infinite;
    top: -2px;
    color: magenta;
}

h1.glitch::after {
    animation: glitchBottom 1.5s infinite;
    top: 2px;
    color: cyan;
}

@keyframes glitchTop {
    0% { clip-path: inset(0 0 80% 0); }
    50% { clip-path: inset(0 0 50% 0); transform: translate(-2px, -2px); }
    100% { clip-path: inset(0 0 80% 0); }
}

@keyframes glitchBottom {
    0% { clip-path: inset(80% 0 0 0); }
    50% { clip-path: inset(50% 0 0 0); transform: translate(2px, 2px); }
    100% { clip-path: inset(80% 0 0 0); }
}

.slogan {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.btn-neon {
    background: none;
    border: 2px solid #0ff;
    color: #0ff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px #0ff;
    transition: all 0.3s ease;
}

.btn-neon:hover {
    background: #0ff;
    color: #000;
    box-shadow: 0 0 20px #0ff;
}

.section {
    padding: 80px 20px;
    text-align: center;
}

.section.dark {
    background: #111;
}

.image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.image-grid img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 0 15px #0ff;
}

.socials a {
    color: #0ff;
    text-decoration: none;
    margin: 0 10px;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(2px) brightness(0.6);
}

/* Scanlines über das gesamte Layout */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.01),
        rgba(255, 255, 255, 0.01) 1px,
        transparent 1px,
        transparent 4px
    );
    pointer-events: none;
}

/* Neon Pulse Animation */
@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #f0f;
    }
    50% {
        text-shadow: 0 0 10px #f0f, 0 0 20px #0ff, 0 0 30px #0ff;
    }
}

.glow-text {
    animation: neonPulse 2.5s infinite;
}

/* Hover-Glitch für Buttons */
.btn-neon:hover {
    animation: glitchBtn 0.4s steps(2, end) infinite;
}

@keyframes glitchBtn {
    0% { transform: translate(0); }
    25% { transform: translate(-2px, 2px); }
    50% { transform: translate(2px, -2px); }
    75% { transform: translate(-1px, 1px); }
    100% { transform: translate(0); }
}
