/* Page Loader Styles */
.onloadpage {
    position: fixed; 
    z-index: 99999999; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0; 
    display: block; 
    background: #ffffff;
}

.onloadpage .pre-content {
    top: 50%; 
    position: relative; 
    right: 0; 
    left: 0; 
    text-align: center; 
    transform: translateY(-50%);
}

.onloadpage .pre-text- {
    font-size: 18px;    
    line-height: 28px;    
    font-weight: 600;    
    width: 30%;    
    margin: 0 auto;
}

.onloadpage .pre-text- span {
    display: block;
}

.logo-pre {
    background: linear-gradient(to bottom, #fffce9 0%,#ffe1ec 100%);
    border-radius: 50%;
    height: 100px;
    width: 100px;
    box-shadow: 0 0 0 0 rgb(0 0 0 / 0%);
    animation: pulse 2s infinite;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    padding: 8px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.text-animation {
    font-weight: bold;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 6s infinite linear;
}

.bg-b {
    background-image: linear-gradient(to right, #673AB7 0%,#E91E63 36%,#E91E63 65%,#673AB7 100%);
}

.text-radius {
    border-radius: 3px;    
    padding: 0 3px;
}

.text-light {
    color: #fff !important;
}

@keyframes hue {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 2000px 0;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .onloadpage .pre-text- {
        width: 88%;
    }
}

/* Additional z-index for mobile */
.onloadpage {
    z-index: 999999999;
} 