.pwg-age-gate {
    --e-global-color-primary: #e41c44;
    --e-global-color-border: #DEDEDE;
    --e-global-color-text: #5a5a5a;
    --e-global-color-background: #ffffff;
    --e-global-color-background-light: #f5f5f5;
    --e-global-color-background-dark: #333333;
    --e-global-color-background-darker: #222222;
    --e-global-color-background-darkest: #111111;
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    font-family: inherit;
}

.pwg-age-gate__dialog {
    width: min(560px, 92vw);
    background: var(--e-global-color-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.pwg-age-gate__header {
    background: var(--e-global-color-text);
    padding: 28px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pwg-age-gate__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.pwg-age-gate__logo svg {
    height: 56px;
    width: auto;
    display: block;
}

.pwg-age-gate__logo img {
    max-height: 56px;
    width: auto;
    display: block;
}

.pwg-age-gate__body {
    padding: 28px 32px 8px;
    text-align: left;
    color: #222;
}

.pwg-age-gate__body p {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.5;
}

.pwg-age-gate__body p:last-child {
    margin-bottom: 0;
}

.pwg-age-gate__actions {
    display: flex;
    gap: 16px;
    padding: 24px 32px 32px;
    flex-wrap: wrap;
}

.pwg-age-gate__btn {
    flex: 1 1 0;
    min-width: 180px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid #c9213a;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
    font-family: inherit;
    line-height: 1.2;
}

.pwg-age-gate__btn--secondary {
    background: #ffffff!important;
    color: #c9213a!important;
}

.pwg-age-gate__btn--secondary:hover {
    color: #fdecef!important;
    background: #c9213a!important;
}

.pwg-age-gate__btn--primary {
    background: #c9213a;
    color: #ffffff;
}

.pwg-age-gate__btn--primary:hover {
    background: #a81a30;
    border-color: #a81a30;
}

.pwg-age-gate--open {
    overflow: hidden;
}

html.pwg-age-gate-locked,
html.pwg-age-gate-locked body {
    overflow: hidden;
}

@media (max-width: 480px) {
    .pwg-age-gate__body {
        padding: 22px 20px 4px;
    }
    .pwg-age-gate__actions {
        padding: 18px 20px 22px;
        flex-direction: column;
    }
    .pwg-age-gate__btn {
        width: 100%;
    }
}
