/* Custom Background Pattern (schwer in reinem Tailwind Utility zu machen) */
body {
    background-color: #0f0505;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Animation für die Hintergrund-Orbs */
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}
.animate-float {
    animation: float 10s infinite ease-in-out;
}