#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #09090d;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1.5s ease-out;
}

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

.splash-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.logo-container img.logo {
    width: 128px;
    height: 128px;
    animation: pulse 2s infinite;
}

.title-glow {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    color: #fff;
    margin: 20px 0;

}

.subtitle {
    color: #aaa;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

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

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-fill {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.8);
    }
}