/* Vollbild-Hintergrund */
.custom-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

/* Container für Punkte */
.dot-container {
    display: flex;
    gap: 12px;
}

/* Einzelner Punkt */
.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(145deg, #7289da, #5865f2);
    animation: bounce 1.2s infinite ease-in-out;
}

/* Animationsverzögerung für jeden Punkt */
.dot1 { animation-delay: 0s; }
.dot2 { animation-delay: 0.15s; }
.dot3 { animation-delay: 0.3s; }

/* Bounce Animation */
@keyframes bounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    40% {
        transform: translateY(-15px);
        opacity: 1;
    }
}
