/* SPLASH SCREEN STYLES */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-logo {
    max-width: 300px;
    max-height: 200px;
    width: auto;
    height: auto;
    margin-bottom: 40px;
    animation: logoFadeIn 1.5s ease-out;
}

.splash-text {
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
    animation: textFadeIn 2s ease-out 0.5s both;
}

.splash-text h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0 0 10px 0;
    letter-spacing: 0.1rem;
}

.splash-text p {
    font-size: 1.2rem;
    font-weight: 200;
    margin: 0;
    opacity: 0.8;
    letter-spacing: 0.05rem;
}

@keyframes logoFadeIn {
    0% { 
        opacity: 0;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textFadeIn {
    0% { 
        opacity: 0;
        transform: translateY(20px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}



.skip-button {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transition: opacity 0.5s ease-in 1s;
}

.skip-button.visible {
    opacity: 1;
}

.skip-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}