@media (pointer: fine) {
    /* Cursor auf der gesamten Seite erzwingen */
    html, body, a, button { 
        cursor: none !important; 
    }

    .cursor-dot, .cursor-outline {
        position: fixed;
        pointer-events: none;
        z-index: 999999 !important; /* Extrem hoch setzen */
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

    .cursor-dot {
        width: 6px;
        height: 6px;
        background: #0B2D6B;
    }

    .cursor-outline {
        width: 30px;
        height: 30px;
        border: 1px solid rgba(11, 45, 107, 0.4);
        transition: transform 0.1s ease-out; /* Verhindert Ruckeln */
    }
}