.pol-age {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pol-age.is-open {
    display: flex;
}

.pol-age__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.pol-age__dialog {
    position: relative;
    z-index: 1;
    background: #0F1825;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 32px 40px;
    width: 100%;
    max-width: 460px;
    text-align: center;
    box-shadow: var(--pol-shadow);
}

.pol-age__logo {
    margin-bottom: 24px;
}

.pol-age__logo img {
    max-height: 70px;
    margin: 0 auto;
    width: auto;
}

.pol-age__title {
    font-size: 22px;
    margin: 0 0 8px;
    color: #fff;
}

.pol-age__subtitle {
    color: var(--pol-text-soft);
    font-size: 16px;
    margin: 0 0 24px;
}

.pol-age__check {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 24px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}

.pol-age__check input {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--pol-orange);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.pol-age__check input:checked {
    background: var(--pol-orange);
}

.pol-age__check input:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #1B1B1B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pol-age__disclaimer {
    font-size: 12px;
    color: var(--pol-text-soft);
    margin: 0 0 24px;
    line-height: 1.5;
}

.pol-age__confirm {
    width: 100%;
}

@media (max-width: 480px) {
    .pol-age__dialog {
        padding: 24px 20px;
    }
    .pol-age__title {
        font-size: 18px;
    }
}
