/* Simple Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out;
}

#loading-screen.fade-out {
    opacity: 0;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 200px;
    height: auto;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.loading-progress {
    width: 200px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #C9A961;
    width: 0%;
    transition: width 0.3s ease-out;
}

.progress-percentage {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    letter-spacing: 0.1em;
}

/* Remove all extra animations and text */
.loading-text,
.loading-tagline,
.loading-date {
    display: none;
}