#splash-screen{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#0b2d5c,#123d7a);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

#splash-screen img{
    width:180px;
    height:180px;
    border-radius:50%;
    animation:pulse 1.5s infinite;
}

#splash-title{
    color:white;
    font-size:24px;
    font-weight:bold;
    text-align:center;
    margin-top:20px;
}

#splash-subtitle{
    color:#ffd700;
    font-size:15px;
    text-align:center;
    margin-top:8px;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.05);}
    100%{transform:scale(1);}
}