/* Splash Screen Styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    cursor: pointer;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.splash-image {
    max-width: 80%;
    max-height: 50vh;
    width: auto;
    height: auto;
    margin-bottom: auto;
    margin-top: auto;
}

.splash-footer {
    text-align: center;
    color: #999;
    font-size: 13px;
    line-height: 1.8;
    padding: 30px 20px;
}

.splash-footer p {
    margin: 8px 0;
}

.splash-footer a {
    color: #60a5fa;
    text-decoration: none;
}

.splash-footer a:hover {
    text-decoration: underline;
}

.splash-hint {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .splash-image {
        max-width: 90%;
        max-height: 40vh;
    }
    
    .splash-footer {
        font-size: 12px;
        padding: 20px 15px;
    }
}
