/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0c0b 0%, #1a1816 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.loading-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border: 3px solid rgba(212, 163, 115, 0.1);
    border-top-color: #d4a373;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: #e6e0d4;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.loading-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #a89f91;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}