.lb-age-gate {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.lb-age-gate[hidden] {
    display: none !important;
}

.lb-age-gate__panel {
    width: min(42.42vw, 100%);
    box-sizing: border-box;
    text-align: center;
    color: #fff;
}

.lb-age-gate__panel--question {
    position: relative;
    background: transparent;
}

.lb-age-gate__art {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 0 auto;
}

.lb-age-gate__content {
    position: absolute;
    left: 50%;
    bottom: 16%;
    transform: translateX(-50%);
    width: min(430px, 78%);
}

.lb-age-gate__text {
    color: #fff;
    font-family: "OpenSans", sans-serif;
    font-size: clamp(17px, 0.7vw, 34px);
    line-height: clamp(23px, 1vw, 34px);
    font-weight: 300;

}

.lb-age-gate__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 8px 0;
}

.lb-age-gate__btn {
    border: 0;
    padding: 4px 6px;
    background: transparent;
    font-size: clamp(18px, 2vw, 38px);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    color: #ffead9;
    opacity: 1;
    visibility: visible;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.lb-age-gate__btn:hover,
.lb-age-gate__btn:focus,
.lb-age-gate__btn:active,
.lb-age-gate__btn:focus-visible {
    color: #ffead9;
    opacity: 1;
    visibility: visible;
}

.lb-age-gate__btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.lb-age-gate__btn--enter {
    text-shadow: 0 0 12px rgba(255, 92, 58, 0.5);
}

.lb-age-gate__deny-tip {
    margin: 10px 0 0;
    color: #ff3b30;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .lb-age-gate {
        padding: 12px;
    }

    .lb-age-gate__panel {
        width: min(100vw, 560px);
    }

    .lb-age-gate__content {
        bottom: 13%;
        width: min(360px, 84%);
    }

    .lb-age-gate__text {
        font-size: clamp(14px, 3.3vw, 18px);
        line-height: 1.3;
    }

    .lb-age-gate__actions {
        gap: 8px;
        margin: 12px 0;
    }

    .lb-age-gate__btn {
        font-size: clamp(18px, 6vw, 28px);
    }

    .lb-age-gate__deny-tip {
        font-size: 13px;
        margin-top: 8px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .lb-age-gate {
        padding: 16px;
    }

    .lb-age-gate__panel {
        width: min(86vw, 700px);
    }

    .lb-age-gate__content {
        bottom: 19%;
        width: min(460px, 76%);
    }

    .lb-age-gate__text {
        font-size: clamp(16px, 1.9vw, 24px);
        line-height: 1.28;
    }

    .lb-age-gate__btn {
        font-size: clamp(24px, 3.3vw, 34px);
    }

    .lb-age-gate__actions {
        gap: 12px;
    }
}