.device-tablet-lock {
    display: none;
}

.device-tablet-lock__card {
    width: min(100%, 420px);
    padding: 28px 24px;
    text-align: center;
    color: #ecfeff;
    background: rgba(8, 29, 31, 0.88);
    border: 1px solid rgba(153, 246, 228, 0.26);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.device-tablet-lock__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    color: #7dd3c7;
    background: linear-gradient(135deg, rgba(18, 115, 109, 0.32), rgba(20, 137, 124, 0.58));
    border: 1px solid rgba(167, 243, 208, 0.24);
    border-radius: 28px;
}

.device-tablet-lock__icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.device-tablet-lock__eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #99f6e4;
}

.device-tablet-lock__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 800;
    color: #ffffff;
}

.device-tablet-lock__text {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(236, 254, 255, 0.82);
}

.device-tablet-lock__note {
    margin: 18px 0 0;
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.6;
    color: #ccfbf1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

@media (max-width: 767.98px) {
    html,
    body {
        min-height: 100%;
        overflow: hidden !important;
    }

    body.tablet-view-lock {
        position: relative;
        min-height: 100vh;
        background:
            radial-gradient(circle at top left, rgba(20, 137, 124, 0.34), transparent 38%),
            radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.18), transparent 34%),
            linear-gradient(135deg, #072b2c 0%, #0f4f4c 52%, #083436 100%);
    }

    body.tablet-view-lock > :not(.device-tablet-lock) {
        display: none !important;
    }

    body.tablet-view-lock .device-tablet-lock {
        position: fixed;
        inset: 0;
        z-index: 2147483647;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 24px 18px;
    }
}