
.blessed-screensaver {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .45s ease, visibility .45s ease;
}

.blessed-screensaver.ativo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.blessed-screensaver-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    user-select: none;
}

.blessed-screensaver-logo {
    width: min(34vw, 260px);
    max-height: 42vh;
    object-fit: contain;
    filter: drop-shadow(0 0 28px rgba(255,255,255,.08));
}

.blessed-screensaver-texto {
    color: #777;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .blessed-screensaver-logo {
        width: min(48vw, 220px);
    }
}
