body.age-warning-lock {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
body.age-warning-lock > * {
    pointer-events: none;
}
body.age-warning-lock > #age-warning {
    pointer-events: auto;
    display: flex;
}
.age-warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    box-sizing: border-box;
    z-index: 99999;
}
.age-warning-modal {
    position: relative;
    width: 37.5rem;
    max-width: 100%;
    padding: 1.875rem 0;
    border-radius: 1.5rem;
    border: 1px solid transparent;
    background:
        linear-gradient(180deg, rgba(55, 19, 36, 1) 0%, rgba(24, 19, 29, 1) 100%) padding-box,
        linear-gradient(180deg, rgba(169, 81, 112, 1) 0%, rgba(252, 11, 124, 1) 100%) border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
.age-warning-icon {
    width: 10rem;
    height: 10rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}
.age-warning-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.age-warning-title {
    margin-top: 1.25rem;
    font-size: 2.625rem;
    font-weight: 600;
    line-height: 2.75rem;
    text-align: center;
    background: linear-gradient(90deg, rgba(248, 235, 239, 1) 0%, rgba(252, 11, 124, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}
.age-warning-desc {
    margin: 1.25rem 0 0;
    width: 31.25rem;
    max-width: calc(100% - 2.5rem);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}
.age-warning-notice {
    margin-top: 1.5rem;
    width: 29rem;
    max-width: calc(100% - 2.5rem);
    min-height: 5.625rem;
    border-radius: 1.125rem;
    border: 1px solid transparent;
    background:
        linear-gradient(90deg, rgba(40, 15, 26, 1) 0%, rgba(35, 15, 25, 1) 100%) padding-box,
        linear-gradient(90deg, rgba(177, 79, 108, 1) 0%, rgba(221, 73, 107, 1) 100%) border-box;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    box-sizing: border-box;
    cursor: pointer;
}
.age-warning-notice:hover {
    filter: brightness(1.15);
}
.age-warning-badge {
    flex-shrink: 0;
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 50%;
    border: 2px solid #FC0B7C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: #FC0B7C;
}
.age-warning-notice-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.age-warning-notice-zh {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.25rem;
    color: #FC0B7C;
}
.age-warning-notice-en {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}
.age-warning-confirm {
    margin-top: 1.875rem;
    width: 25.25rem;
    max-width: calc(100% - 2.5rem);
    height: 4.25rem;
    border-radius: 2.5rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(243, 79, 126, 1) 0%, rgba(193, 54, 106, 1) 100%);
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5rem;
    font-family: inherit;
}
.age-warning-confirm:hover {
    filter: brightness(1.05);
}
@media (max-width: 640px) {
    .age-warning-modal {
        width: 88vw;
        padding: 6vw 0;
    }

    .age-warning-icon {
        width: 24vw;
        height: 24vw;
        max-width: 7.5rem;
        max-height: 7.5rem;
    }

    .age-warning-title {
        font-size: 1.875rem;
        line-height: 2rem;
    }

    .age-warning-notice-text {
        gap: .1875rem;
    }
    .age-warning-desc {
        width: 78vw;
        font-size: .75rem;
        line-height: 1.625rem;
    }

    .age-warning-notice {
        width: 82vw;
        flex-direction: row;
        align-items: center;
    }

    .age-warning-notice-zh {
        font-size: .75rem;
    }

    .age-warning-notice-en {
        font-size: .75rem;
    }

    .age-warning-confirm {
        width: 82vw;
        height: 3.5rem;
        font-size: 1.125rem;
    }
}
