.splash-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 99999;
    background: #000;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

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

.splash-bg.blur-out {
    filter: blur(30px);
    opacity: 0.3;
}

.splash-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    color: white;
    text-align: center;
}

.splash-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: auto;
    padding-top: 50px;
}

.splash-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: calc(env(safe-area-inset-bottom, 20px) + 60px);
}

.splash-content.dismiss {
    opacity: 0;
    transform: translateY(-40px);
    pointer-events: none;
}

.splash-date {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.splash-time {
    font-size: 128px;
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1;
}

.splash-lock-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-lock-icon {
    display: block;
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
}

.splash-frame.dismiss {
    transform: translateY(-100%);
}

.splash-dim-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    transition: opacity 0.6s ease;
}