.splash-screen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background-color: #0A66C2; /* Matches your dashboard blue */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 99999;
    overflow: hidden;
}

.splash-bg-container {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    z-index: 1;
}

.splash-deity-div {
    width: 100%;
    height: 100%;
    background-image: url('/icons/image3.png');
    /* This zooms in past the grey borders to fill the screen */
    background-size: 160%; 
    background-position: center 20%; 
    background-repeat: no-repeat;
    
    /* Blends the image's background into the blue screen background */
    mix-blend-mode: multiply;
    
    /* Increases visibility and contrast against the blue */
    filter: brightness(1.1) contrast(1.1);
}

.splash-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient transition into solid branding blue at the bottom */
    background: linear-gradient(to bottom, 
                rgba(10, 102, 194, 0.1) 0%, 
                rgba(10, 102, 194, 0.7) 50%,
                rgba(10, 102, 194, 1) 100%);
    z-index: 2;
}

.splash-footer {
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
    text-align: center;
}

.splash-logo-text {
    color: #FFFFFF;
    font-size: 3.5rem;
    font-weight: 800; /* Dashboard match */
    margin: 0;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.splash-subtitle-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
}

.splash-timer {
    position: absolute;
    top: 40px; right: 30px;
    z-index: 20;
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800;
}