body {
    margin: 0;
    background: #000;
    color: #ffbd2c;
    font-family: Consolas, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

/* Logo oben rechts */
.logo-top {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 180px;
    height: auto;
    z-index: 10;
}

.logo-top img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px #ffbd2c);
    transition: transform 0.3s ease;
}

.logo-top img:hover {
    transform: scale(1.05);
}

/* Animierter Titel */
h1 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 0 0 15px #ffbd2c;
    animation: glow 2s infinite alternate, glitch 1.5s infinite;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #ffbd2c; }
    to   { text-shadow: 0 0 25px #ffbd2c; }
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}

p {
    font-size: 1.2rem;
    color: #00bd00;
    opacity: 0.85;
    margin-top: 10px;
}

/* Matrix Regen */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* CRT Scanlines */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 189, 44, 0.05) 0px,
        rgba(255, 189, 44, 0.05) 2px,
        transparent 3px,
        transparent 4px
    );
    z-index: 5;
}
