@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

.loader-spinner {
    border: 4px solid #f3f4f6;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-dots {
    display: flex;
    gap: 4px;
}

.loader-dots div {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loader-dots div:nth-child(1) { animation-delay: -0.32s; }
.loader-dots div:nth-child(2) { animation-delay: -0.16s; }

.loader-pulse {
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bars {
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

.loader-bars div {
    width: 4px;
    background: #3b82f6;
    animation: bars 1.2s ease-in-out infinite;
}

.loader-bars div:nth-child(1) { animation-delay: -0.4s; }
.loader-bars div:nth-child(2) { animation-delay: -0.2s; }
.loader-bars div:nth-child(3) { animation-delay: 0s; }

.loader-wave {
    display: flex;
    gap: 2px;
    align-items: center;
}

.loader-wave div {
    width: 3px;
    height: 20px;
    background: #3b82f6;
    animation: wave 1s ease-in-out infinite;
}

.loader-wave div:nth-child(1) { animation-delay: 0s; }
.loader-wave div:nth-child(2) { animation-delay: 0.1s; }
.loader-wave div:nth-child(3) { animation-delay: 0.2s; }
.loader-wave div:nth-child(4) { animation-delay: 0.3s; }
.loader-wave div:nth-child(5) { animation-delay: 0.4s; }

.loader-orbit {
    position: relative;
    width: 40px;
    height: 40px;
}

.loader-orbit .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
}

.loader-orbit .particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #60a5fa;
    border-radius: 50%;
    animation: orbit 2s linear infinite;
    transform-origin: 0 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes bars {
    0%, 40%, 100% { height: 20px; }
    20% { height: 40px; }
}

@keyframes wave {
    0%, 40%, 100% { height: 20px; }
    20% { height: 40px; }
}

@keyframes orbit {
    0% { transform: translate(-20px, -20px) rotate(0deg) translate(20px, 0) rotate(0deg); }
    100% { transform: translate(-20px, -20px) rotate(360deg) translate(20px, 0) rotate(-360deg); }
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.animation-play-state-paused {
    animation-play-state: paused !important;
}

.animation-play-state-paused * {
    animation-play-state: paused !important;
}
