.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading-logo {
    width: 250px;
    height: auto;
    margin-bottom: 30px;
    animation: strongBlink 1.5s infinite;
}

@keyframes strongBlink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}