/* Reines schwarzes Hintergrund-Overlay */
#black-overlay {
    position: fixed;
    inset: 0;
    background: #1A1A18;
    z-index: 9990;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

/* Logo-Screen mit schwarzem Hintergrund */
#intro-logo-screen {
    position: fixed;
    inset: 0;
    background: #1A1A18;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-in-out;
}

/* Logo */
#intro-logo {
    max-width: 300px;
    max-height: 300px;
    object-fit: contain;
    transform-origin: top left;
    transition: transform 1.2s ease-in-out;
    will-change: transform;
}
