/* Lock Screen — Windows 10/11 Hybrid Style */
.gos-lock-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10vh 10vw;
    color: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.1, 0.9, 0.2, 1);
    user-select: none;
}

.gos-lock-screen.active {
    transform: translateY(0);
}

.gos-lock-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.gos-lock-clock .time {
    font-size: 8rem;
    font-weight: 200;
    line-height: 1;
}

.gos-lock-clock .date {
    font-size: 2rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

.gos-lock-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.gos-lock-hint i {
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Glassmorphism for clock when needed */
.gos-lock-clock {
    display: inline-block;
}

/* Add a dark overlay and blur gradient */
.gos-lock-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.gos-lock-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(12px);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
    z-index: -2;
}

@media screen and (max-width: 600px) {
    .gos-lock-screen {
        padding: 5vh 5vw;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .gos-lock-content {
        gap: 1.5rem;
    }

    .gos-lock-clock .time {
        font-size: 5.5rem;
    }

    .gos-lock-clock .date {
        font-size: 1.4rem;
    }

    .gos-lock-hint {
        justify-content: center;
        font-size: 1rem;
    }
}