#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c2c2c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#splash-screen .logo {
    max-width: 300px;
    width: 50%;
    height: auto;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

#splash-screen .tagline {
    font-size: 1rem;
    color: #a0a0a0;
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

#splash-screen .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#splash-screen .loading-text {
    margin-top: 1.5rem;
    color: #a0a0a0;
    font-size: 0.9rem;
    animation: pulse 1.5s ease-in-out infinite;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
