/* ==================== LOADING SCREEN ==================== */
.loading-screen {
    display: none;
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: var(--dark-bg);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-screen.active { 
    display: flex; 
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 215, 0, 0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

.loading-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.footer-links a:hover { 
    color: var(--gold); 
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
}
