 /* styles.css */



 .loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.energy-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #21aad4;
    border-right-color: #21aad4;
    animation: spin 2s linear infinite;
}

.energy-ring:nth-child(2) {
    width: 90%;
    height: 90%;
    border-top-color: #0ea5e9;
    border-left-color: #0ea5e9;
    animation: spin 2s linear infinite reverse;
}

.energy-ring:nth-child(3) {
    width: 80%;
    height: 80%;
    border-bottom-color: #38bdf8;
    border-right-color: #38bdf8;
    animation: spin 1.5s linear infinite;
}

.progress-container {
    width: 240px;
    position: relative;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #21aad4, #58a43b);
    width: 0%;
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
    animation: progressAnimation 2.5s ease-in-out infinite;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.loading-text {
    color: #000000;
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: #58a43b;
    border-radius: 50%;
    pointer-events: none;
    animation: float 3s infinite ease-in-out;
}

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

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

@keyframes progressAnimation {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}