#age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-verification-content {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

#confirm-age {
    padding: 10px 20px;
    background: #daa174;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#not-confirm-age {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}