/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px 50px;
    border-radius: 15px;
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--theme-color, #ffcc00);
    animation: spin 1s ease-in-out infinite;
}

.loading-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--theme-color, #ffcc00);
    letter-spacing: 3px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}