@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
:root {
    --bg-color: #1e1e2e;
    --accent-cyan: #06b6d4;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --text-color: #f8fafc;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

.grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
}

.orbital-loader {
    width: 120px;
    height: 120px;
    position: relative;
}

.orbital-ring {
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: var(--accent-cyan);
    animation: orbit 1.5s linear infinite;
}

.orbital-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-duration: 1.2s;
    border-top-color: var(--accent-cyan);
    filter: drop-shadow(0 0 8px var(--accent-cyan));
}

.orbital-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-duration: 1.5s;
    animation-direction: reverse;
    border-top-color: var(--accent-purple);
    filter: drop-shadow(0 0 8px var(--accent-purple));
}

.orbital-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-duration: 1.8s;
    border-top-color: var(--accent-pink);
    filter: drop-shadow(0 0 8px var(--accent-pink));
}

@keyframes orbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Progress Bar Styles */
.progress-bar {
    width: 240px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    /* Reset Bootstrap defaults if necessary */
    display: block;
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    border-radius: 10px;
    animation: progress 3s ease-in-out forwards;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
    font-weight: 300;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}