.age-warning-lock {
    overflow: hidden;
}

.age-warning-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(12, 14, 20, 0.72);
    backdrop-filter: blur(8px);
}

.age-warning-modal {
    width: min(420px, 100%);
    padding: 18px 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    color: #1d2433;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.age-warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.age-warning-icon img {
    display: block;
    width: 202px;
    height: 163px;
    object-fit: contain;
}

.age-warning-title {
    margin-bottom: 12px;
    color: #121722;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    display: none;
}

.age-warning-desc {
    margin: 0;
    padding: 0 36px;
    color: #5d616f;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
}

.age-warning-notice {
    display: flex;
    align-items: center;
    gap: 8.5px;
    margin: 20px 0 8px;
    padding: 20px 15px;
    border-radius: 10px;
    background: #fff5e6;
    text-align: left;
}

.age-warning-badge {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ff9700;
    border: 2px solid #ff9700;
    background: #fff5e6;
    font-size: 16px;
    font-weight: 500;
}

.age-warning-notice-text {
    min-width: 0;
}

.age-warning-notice-zh {
    color: #ff9700;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.age-warning-notice-en {
    color: #8595B5;
    font-size: 12px;
    line-height: 1.4;
}

.age-warning-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    color: #000;
    background: #ff9700;
    font-size: 18px;
    font-weight: 500;
    height: 60px;
    line-height:60px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

@media (max-width: 480px) {
    .age-warning-overlay {
        padding: 18px;
    }

    .age-warning-modal {
        padding: 9px 18px 20px;
        border-radius: 14px;
    }

    .age-warning-title {
        font-size: 21px;
    }

    .age-warning-desc {
        font-size: 14px;
        padding: 0 6px;
    }

    .age-warning-notice {
        align-items: flex-start;
        margin: 6px 0 10px;
        padding: 10px 18px;
    }
    
    .age-warning-notice-zh {
        font-size: 11px;
        font-weight: 500;
    }

    .age-warning-notice-en {
        font-size: 9px;
        font-weight: 400;
    }
}
