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

.age-verify-modal {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.age-verify-buttons {
    margin-top: 20px;
}

.age-verify-btn {
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
}

.age-verify-btn:hover {
    background: #005177;
}