#pwa-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

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

#pwa-splash img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

#pwa-splash h1 {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

#pwa-splash p {
    color: #ccc;
    font-size: 16px;
    margin: 10px 0 0 0;
    text-align: center;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}