.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, 
        #ffffff 0%, 
        #fafbfc 20%, 
        #f5f6f8 40%, 
        #f0f2f4 60%, 
        #eef0f2 80%, 
        #e6e8eb 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transition-card {
    background: rgba(255, 255, 255, 0.555);
    backdrop-filter: blur(50px);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 20px;
    box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.075);
    padding: 2.5rem 2rem;
    text-align: center;
    color: #333333;
    max-width: 320px;
    width: 80%;
    transform: translateY(30px);
    animation: cardSlideUp 1.0s ease-out 0.5s forwards;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.transition-card h2 {
    font-family: 'PlusJakartaSans-Bold';
    font-size: 24px;
    margin-bottom: 2rem;
    background: #333333;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-spinner {
    width: 3rem;
    height: 3rem;
    border: 3px solid rgb(187, 187, 187);
    border-top: 3px solid #333333;
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-family: 'PlusJakartaSans-Regular';
    font-size: 14px;
    margin: 0;
}