.age-verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-verify-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.age-verify-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.age-verify-label {
    display: block;
    margin-bottom: 10px;
}

.age-verify-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

.age-verify-button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

.age-verify-error {
    color: red;
    margin-top: 10px;
}