/* Splash Screen Styles */
.splash-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f3f4; /* Match --phone-bg */
    z-index: var(--z-fullscreen, 3200);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out;
}

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

#splash-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.splash-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
}

.loading-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background-color: #333; /* Main color */
    border-radius: 2px;
    transition: width 0.3s ease;
}

.loading-text {
    font-size: 12px;
    color: #666;
    font-family: sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
}
