/* Splash Screen Styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    pointer-events: auto;
}

.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: splashFadeIn 0.6s ease-out;
}

@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-logo {
    width: 120px;
    height: 120px;
    animation: splashLogoBounce 1.2s ease-in-out infinite;
}

@keyframes splashLogoBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.splash-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
}

.splash-subtitle {
    font-size: 1.1rem;
    color: #b0b0c0;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

.splash-loader {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.splash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #5d5d7a;
    animation: splashDotBounce 1.4s infinite;
}

.splash-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.splash-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes splashDotBounce {
    0%, 100% {
        transform: translateY(0);
        background-color: #5d5d7a;
    }
    50% {
        transform: translateY(-8px);
        background-color: #7d7d9a;
    }
}